@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Rubik:ital,wght@0,300;0,400;0,500;1,300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: JetBrains Mono;
}

header {
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('../img/amanobackground.png');
    background-position: center;
    background-size: cover;
}

a {
    text-decoration: none;
}

.logo {
    position: absolute;
    right: 0%;
}

header .menu {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

header .menu li {
    display: inline-block;
}

header .menu a {
    color: antiquewhite;
    padding: 8px 12px;
    border-radius: 3px;
    transition: 200ms;
}

header .menu .ativo, header .menu a:hover {
    color: #444;
    background-color: antiquewhite;
}

.principal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.principal h2 {
    color: antiquewhite;
    font-size: 45px;
}

.principal .links a{
    color: antiquewhite;
    padding: 10px 10px;
    display: inline-block;
    border: 1px solid white;
    border-radius: 3px;
    margin-top: 20px;
    transition: 200ms;
}

.principal .links a:hover {
    color: #444;
    background-color: antiquewhite;
}