@import url("./css/home.css");
@import url("./css/imagens.css");
@import url("./css/sobre.css");
@import url("./css/contato.css");

*{margin: 0; padding: 0;}

html{
    scroll-behavior: smooth;
    font-family: 'Cormorant Garamond', serif;
    font-family: 'Libre Baskerville', serif;
    font-family: 'Playfair Display', serif;
    font-family: 'Roboto Condensed', sans-serif;
}

nav{
    display: flex;
    z-index:+1;
}

nav ul{
    display: flex;
    width: 100%;
    height: 8em;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10rem;
    position: fixed;
    background-color: rgba(5,5,5,0.6);
}
.menu a{
    color:rgb(220,220,220);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    font-family: 'Libre Baskerville', serif;
}

.menu a:hover{
    border-bottom: thick solid rgb(168, 38, 2);
    cursor: pointer;
}

.menu a:active{
    border-bottom: solid rgb(0, 0, 0);
}

section{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 3rem 0 0 0;
}


