@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables generated from Kigen.design */
:root {
  --smalt-50: #eef0ff;
  --smalt-100: #d5daff;
  --smalt-200: #afbaff;
  --smalt-300: #8a9dff;
  --smalt-400: #6382ff;
  --smalt-500: #2e67ff;
  --smalt-600: #0052e1;
  --smalt-700: #0040b6;
  --smalt-800: #00308d;
  --smalt-900: #001b58;
  --smalt-950: #000d36;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}

header {
    background-color: var(--smalt-800);
}

#cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

#links-cabeca {
    display: block;
}

#links-cabeca ul > a {
    color: #eef0ff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 20px;
}

#imagem-cabeca {
    width: 399px;
    height: 625px;
    margin: auto;
}

#titulo-imagem {
    position: absolute;
    top: 45%;
    left: 58%;
    padding: 10px;
    background-color: #6382ff79;
}

header a:hover {
    color: #8a9dff;
    border-bottom: 2px solid white;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
    
}