@font-face {
    font-family: Dancing ;
    src: url(DancingScript-Regular.ttf);
}
*{
    margin: 0; padding: 0; border: 0; box-sizing: border-box; 
}
:root{
    font-size: 62.5%;
}
body{
    background:linear-gradient(rgb(75, 173, 75),rgb(156, 199, 199));
}
.logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}
#Navigation{
    font-size: 3rem;
    text-align: center;
    border: 5px solid black;
    width:25%;
    margin-left: 38%;
    margin-top: 40px;
    height: min-content;
    padding-bottom: 5px;
}
#Navigation a{
    color: green;
    text-decoration: none;
}
#Navigation a:hover{
    color: red;
}
.bigbox h1{
    text-align: center;
    font-size: 6rem;
    font-family: Dancing;

}
.bigbox p{
    font-size: 3rem;

}

p{
    font-size: 2rem;
    text-align: center;

}
.boxset1 {
    display: flex;
    margin-left: 1%;
    margin-right: 1%;
}

.box {
    flex: 1;
    height: 300px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-left: 8.5%;
}  

.box:nth-child(-n + 2) {
    margin-right: 20px;
} 
.bigbox {
    margin-left: 1%;
    margin-right: 1%;
    border: 5px solid black;
    height: min-content;
    margin-top: 50px;
    
}  


@media screen and (max-width: 750px){
    #Navigation{
        visibility: hidden;
        width: 0%;
        height: 0%;
        display: none;
    }
    .box:nth-child(n+2){
        visibility: hidden;
        width: 0%;
        height: 0%;
        display: none;
    }
    #Navigation-mobile{
        font-size: 2rem;
        text-align: center;
        border: 5px solid black;
        width:60%;
        margin-left: 45%;
        padding-top: 10px;
        height: min-content;
        padding-bottom: 10px;
        margin-bottom: 5px;
    }
    .bigbox{
        margin-left: 30%;
        width: 100%;
    }
    .box:first-child{
        padding-left: 30%;
    }
    footer{
        margin-left: 50%;
    }
}
@media screen and (min-width: 820px){
    #Navigation-mobile{
        visibility: hidden;
    }
    .box:nth-child(3){
        visibility: hidden;
        width: 0%;
        height: 0%;
        display: none;
    }
}
@media screen and (min-width: 1000px){
    #Navigation-mobile{
        visibility: hidden;
    }
    .box{
        margin-left: 0px;
    }

}
@media screen and (min-width: 1280px){
    #Navigation-mobile{
        visibility: hidden;
    }
    .box{
        margin-left: 4.5%;
    }

}
@media screen and (min-width: 1281px){
    #Navigation-mobile{
        visibility: hidden;
    }
    .box:nth-child(3){
        visibility: visible;
        display: flex;
    }
}