body,html{
    margin: 0;
    padding: 0;
    background-color:antiquewhite
}
nav{
    top: 0;
    z-index: 1000;
    position: sticky;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 20px;
    font-size: 24px;
    color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 10px 10px 10px black;
    display: flex;
    align-items: center;
        width: 100%;
    height: 100px;
    background-color: black;
}
nav img {
    box-sizing: border-box;
    width: 64px;
  filter: invert(1);
}
.content{
    font-size: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 15px;
    margin: 0 auto;
    width: 85% ;
    font-family: sans-serif;
    color: white;
    background-color:rgb(20, 20, 20);
    margin-top: 15px;
}
.categories{
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    width: 85%;
    display: flex;
    flex-wrap: wrap;
        margin-top: 15px;
}
.box{
    transition: all ease 0.3s;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 300%;
    border-radius: 15px;
    color: white;
    width: 20vw;
    height: 200px;
        text-align: center  ; /* backup */
} 
.box:hover{
    color: goldenrod;
}
.infos{
    gap: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto;
     margin-top: 15px;
}
.infogeneral{
    overflow: auto;
    background-image:linear-gradient(to bottom, rgba(119, 80, 29, 0), rgba(0, 0, 0, 0.9));
    font-size: 150%;
    border-radius: 8px;
    font-family: sans-serif;
    text-align: center;
    color: white;
    width: 47%;
    height: 45vh;
}
.mycookie{
    background-image: 
        linear-gradient(to bottom, rgba(119, 80, 29, 0.7), rgba(0, 0, 0, 0.9)), 
        url('cookie.png'); 
        background-size: cover;
    }       
@media (max-width:768px){
    .box{
        width: 100%;
    }
    .infogeneral{
        width: 100%;
    }
    .content{
        font-size: 16px;
    }
}
