:root{
    --hover-color: #1c2632;
    --background-color: #f2f2f2;
    --navbar-height: 80px;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Quattrocento','serif';
    scroll-behavior: smooth;

}
html{
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}
nav{

    height: var(--navbar-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.logo {
    height: 100px;
    width: 100px;
  }
.logo_l{
    height: 100px;
    width: 100px;
    position: sticky;
    right: 50%;
    transform: translateX(50%);
    top: 0;
    z-index: 1;
    margin-bottom: 18px;

}
  
nav ul{
    height: 100%;
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}
nav li{
    height: 100%;
    width: 130px;
    text-align: center;

}
nav li:hover{
    background: var(--hover-color);

}
nav input[type="checkbox"]{
    display: none;
}

nav ul a{
    font-size: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgb(0,0,0);
}
nav ul a:hover{
    color: #fbedd9;
}
.opening{
    margin-right: 30px;
    height: 100%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle_button{
    width: 30px;
    height: 23px;
    position: sticky;
    top: 20px;
    left: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    
}

.bar{
    height: 4px;
    width: 100%;
    background: rgb(0,0,0);
    border-radius: 100px;

}
.hidden {
    display: none;
}
@media(max-width: 1250px){
    .toggle_button{
        display:flex;
    }
    nav ul{
        height: min-content;
        width: 100%;
        display: none;
        position: absolute;
        top: var(--navbar-height);
        color: #fbedd9;
        background-color: white;
        z-index: 2;
    }
    nav li{
        height: min-content;
        width: 100%;

    }
    nav ul a{
        padding: 30px 0;
    }
    .opening{
        display: none;
    }
    #toggle_button:checked ~ ul{
        display: block;
    }
    .logo_l{
        right: 50%;
        transform: translate(50%);
    }
    
}
main{
    width: 100%;
    flex-grow: 1;
    color: black;
    
}
main a{
    color: black;
}

main h1{
    display: flex;
    justify-content: center;
}
main h3{
    margin-top: 20px;
}
main div{
    margin-left: 20px;

}
footer{
    margin-top: auto;
    width: 100%;
    height: 200px;
    background-color: #1c2632;
    color:#fbedd9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer a{
    color: #fbedd9;
    margin-left: 20px;
    
}
.links{
    display: flex;
    
}
.last_text{
    margin-top: 30px;
}
