*{
    margin: 0; padding: 0; border: 0; box-sizing: border-box; 
}
:root{
    font-size: 62.5%;
}
#Logo{
    font-size: 5rem;
    text-align: center;
    border: 5px solid black;
    width: 66%;
    margin-left: 16.5%;
    margin-top: 25px;
    height: 10%;
    background-color: aqua;
}
#Navigation{
    font-size: 3rem;
    text-align: center;
    border: 5px solid black;
    width:60%;
    margin-left: 20%;
    margin-top: 40px;
    height: min-content;
    padding-bottom: 5px;
    background-color: orange;
}
p{
    font-size: 2rem;
    text-align: center;
}
.boxset1 {
    display: flex;
    margin-left: 1%;
    margin-right: 1%;
    
}

.box {
    flex: 1;
    border: 5px solid black;
    height: 300px;
    margin-top: 50px;
    margin-bottom: 20px;
    background-color: yellow;
}  

.box:nth-child(-n + 2) {
    margin-right: 20px;
} 
.bigbox {
    display: flex;
    margin-left: 1%;
    margin-right: 1%;
    border: 5px solid black;
    height: 300px;
    margin-top: 50px;
    background-color: white;
    
}  

@media screen and (max-width: 575px){
    #Navigation{
        visibility: hidden;
        width: 0%;
        height: 0%;
        display: none;
    }
    #Logo{
        font-size: 3rem;
    }
    #Navigation-mobile{
        font-size: 2rem;
        text-align: center;
        border: 5px solid black;
        width:60%;
        margin-left: 20%;
        padding-top: 10px;
        height: min-content;
        padding-bottom: 10px;
        margin-bottom: 5px;
    }
}
@media screen and (min-width: 576px){
    #Navigation-mobile{
        visibility: hidden;
    }

}