@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
:root {
    --cor01: #13293D;
    --cor02: #16324F;
}
html {
    scrollbar-color: var(--cor02) var(--cor01);
    scrollbar-width: thin;
}
body {
    background-image: url("../imagens/fundo.gif");
    background-size: cover;
    margin: 0;
}
header {
    background-color: var(--cor02);
}
#logo {
    padding: 10px;
    width: 60px;
    filter: drop-shadow(4px 4px 8px rgb(0, 0, 0));
}
header > h1 {
    font-family: "Garamond", serif;
    font-weight: lighter;
    font-size: 3em;
    color: white;
    text-shadow: black 1px 1px 3px;
    padding: 5px;
    display: inline;
    position: relative;
    bottom: 43px;
    left: 10px

}
#github {
    width: 70px;
    position: absolute;
    right: 10px;
    top: 23px;
}
section {
    background-color: transparent;
    margin: 55px;
    display: inline;
}
#titulo {
    margin-left: 5%;
    padding: 20px 0;
    font-family: "Garamond", serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
    font-size: 4em;
    color: var(--cor02);
}
#container_anos {
    background-color: var(--cor01);
    color: white;
    box-shadow: black 1px 1px 3px;
    width: 500px;
    border-radius: 5px;
    margin-left: 4%;
    padding: 20px 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}
#anos {
    margin: 0 10px;
    background-color: var(--cor02);
    text-align: center;
    line-height: 30px;
    display: block;
}
.link {
    text-decoration: none;
    color: white;
    position: relative;
    display: inline;
    transition: color 0.3s ease;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3E92CC, #01407B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.link:hover {
    color: #3E92CC;
}

.link:hover::after {
    transform: scaleX(1);
}

hr {
    color: #3E92CC;
}

aside > img {
    width: 400px;
    border-radius: 50%;
}
footer {
    background-color: var(--cor01);
    color: white;
    font-family: "Garamond", serif;
    line-height: 20px;
    padding: 30px;
    bottom: 0;
}
footer > h2 {
    font-family: "Garamond", serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
    padding-bottom: 15px;
    font-size: 1.5em;
}
footer > p > a {
    color: white;
    text-decoration: none;
}
