*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}


html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#home{
    background-color: black;
    width: 100%;
    height: 100vh;
    position: relative;
}

.front{
    width: 100%;
    height: 100vh;
    background-color: rgba(202,157,105);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;

}

nav{
    display: flex;
    width: 100%;
    height: 10%;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1;
}

nav ul{
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
nav h1{
    font-size: 25px;
    color: rgba(240, 248, 255, 0.532);
}

nav ul a{
    font-size: 22px;
    text-decoration: none;
    color: aliceblue;
}

.front h1{
    font-size: 20vw;
    color: rgba(240, 248, 255, 0.616);

}

#coffee{
    width: 16%;
    top: 10%;
    left: 45%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    z-index: 1;
    
}

#bean1{
    width: 16%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    top: 48px;
    left: 340px;
    transform: rotate(20deg);
  
}

#bean2{
    width: 16%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    top: 67%;
    left: 52%;
    transform: rotate(20deg);
    z-index: 2;

}

#bean3{
    width: 16%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    top: 55%;
    left: 14%;
    transform: rotate(131deg);

}

#bean4{
    width: 16%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    top: 29%;
    left: 73%;
    transform: rotate(113deg);

}

#bean5{
    width: 16%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    top: 7%;
    left: 60%;
    transform: rotate(-31deg);

}

#about{
    width: 100%;
    height: 100vh;
    background-color: rgba(202,157,105);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    z-index: -1;

}

.card{
    width: 26%;
    height: 70%;
    background-color: aliceblue;
    box-shadow: 2px 2px 10px black;
    border-radius: 20%;

}

.para{
    width: 70%;
    height: 60%;
    font-size: 2vw;
    color: rgba(240, 248, 255, 0.568);
    text-align: justify;

}

#fanta{
    width: 110%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    z-index:1;
    top: -90px;
}

#sprite{
    width: 67%;
    position: absolute;
    filter: drop-shadow(2px 2px 10px black);
    z-index:1;
    top: -90px;
}

#menu{
    width: 100%;
    height: 100vh;
    background-color: rgba(202,157,105);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 40px;
    z-index: -1;

}

.card1,.card2,.card3{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card1 #b1{
    width: 70%;
    position: absolute;
    top: 224px;
    left: -71px;
    rotate: 34deg;
}

.card3 #b3{
    width: 60%;
    position: absolute;
    top: 224px;
    left: 210px;
    rotate: 141deg;
}

#contact{
    width: 100%;
    height: 100vh;
    background-color: rgba(202,157,105);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    position: relative;
    padding: 40px;
    z-index: -2;


}

.form{
    width: 40%;
    height: 80%;
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2%;
    position: relative;
    border-radius: 20px;
    box-shadow: 2px 2px 10px black;
    
}

.form h1{
    font-size: 6vw;
    position: absolute;
    top: -55px;
    color: aliceblue;
    -webkit-text-stroke: 2px rgba(202,157,105);
}
.form input{
    width: 80%;
    height: 10%;

}

.form textarea{
    width: 80%;
    height: 30%;
    border: 3px solid  rgba(202,157,105);
    color:  rgba(202,157,105);
    border-radius: 20px;
    padding: 20px;
}

.form button{
    padding: 10px 30px;
    font-size: 20px;
    background-color: transparent;
    border: 3px solid  rgba(202,157,105);
    color:  rgba(202,157,105);
    border-radius: 20px;
    cursor: pointer;
}

.form input{
    width: 80%;
    height: 10%;
    border: 3px solid  rgba(202,157,105);
    color:  rgba(202,157,105);
    border-radius: 20px;
    padding: 20px;
}

#contact .form button:hover{
    background-color:rgba(202,157,105) ;
    color:aliceblue
}