

a{
    color: white;
    text-decoration: none;
}

a:hover{
    color: white;
}

body{
    margin: 0;
    background-color: rgb(240, 240, 240);
    font-family: Arial, Helvetica, sans-serif;
}

#main-nav{
    position: fixed;
    background-color: burlywood;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    width: 100%;
}

#menu-toggle{
    display: none;
}

.hamburger{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

#menu-toggle:checked ~ .nav-links{
    left: -80%;
    gap: 30px;
    padding-top: 30px;
    background-color: burlywood;
    color: cornsilk;
    padding-left: 82%;
}

.hamburger span{
    background-color: black;
    width: 25px;
    height: 3px;
    margin: 2px;
}

#menu-toggle:checked ~ .hamburger{
    position: relative;
    justify-content: center;
    align-items: center;
}

#menu-toggle:checked ~ .hamburger span{
    position: absolute;
    right: 0;
}

#menu-toggle:checked ~ .hamburger span:first-child{
    display: none;
}

#menu-toggle:checked ~ .hamburger span:nth-child(2){
    transition: 500ms;
    rotate: -45deg;
}
#menu-toggle:checked ~ .hamburger span:nth-child(3){
    transition: 500ms;
    rotate: 45deg;
}


.nav-links{
    display: flex;
    flex-direction: column;
    list-style: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: -1500%;
    top: 34px;
    align-items: flex-start;
    transition: 300ms;
    color: transparent;
    box-sizing: border-box;
    background-color: transparent;
}

#history{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
    color:cornsilk;
    background-color: coral;
    padding: 50px;
    opacity: 0.9;
}

#history p{
    font-size: large;
    align-self: center;
    width: 60%;
}

#clouds{
    position: relative;
    height: 50px;
    background-color: #fee4c3
;
}

#clouder{
    position: relative;
    top: 20px;
    height: 40px;
    background-color: #fee4c3;
    border-radius: 70%;
}


section{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 50.4px);
    width: 100%;
}

header #contentSquare{
    height: 300px;
    width: 500px;
    background-color: rgb(25, 25, 112, 0.9);
    border: 1px dashed black ;
    border-radius: 10%;
    text-align: center;
    font-size: larger;
    color:cornsilk;
}

main{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: max-content;
    background-color:burlywood;
    opacity: 0.9;
}

main .coffes{
    align-self: center;
    text-align: center;
    border: dashed 1px wheat;
    border-radius: 20px;
    width: 400px;
    margin: 30px;
    background-color:chocolate;
    color:cornsilk;
}

footer{
    padding: 30px;
    background-color: black;
    color: white;
    height: 200px;
}

#bottom{
    position: relative;
    background-color: coral;
    opacity: 0.9;
    height: 100px;
}

#bottomer{
    position: relative;
    background-color: coral;
    opacity: 0.9;
    height: 100px;
    top:-50px;
    border-radius: 70%;
}


@media screen and (min-width: 768px) {
    .hamburger{ display: none;}
    .nav-links {
        display: flex;
        flex-direction: row;
    }

    .nav-links li {
        margin: 0 30px 0 30px;
        list-style-type: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
    }

    #menu-toggle:checked ~ .nav-links {
        left: auto;
        gap: normal;
        padding-top: 0;
        padding-left: 0;
    }

}