*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#navbar{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding: .5rem 5rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 5);
    background:rgba(0, 255, 225, 0.534);
}
.navbar .navbar-brand{
    font-size: 25px;
    font-weight: 800;
    color:rgba(0, 255, 225, 0.534);
}
#navbarSupportedContent a{
    color: rgba(0, 255, 225, 0.534);
    border-bottom: 2px solid transparent;
    font-size: 25px;
    font-weight: 500;

}
#navbarSupportedContent a:hover{
    border-bottom: 2px solid white;

}
#navbarSupportedContent button{
    background:rgba(0, 255, 225, 0.534);
    width: 5rem;
    border-radius: 15px;
    font-weight: 400;
}
section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/****Home*****/


#Home{
    background:url(Ice_cream_with_whipped_cream\,_chocolate_syrup\,_and_a_wafer_\(cropped\).jpg);
    background-size:cover ;
    background-position:center;
    flex-direction: column;
}
#Home h1{
    font-size: 50px;
    color:black;
    letter-spacing: 3px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}
#Home p{
    font-size: 19px;
    color: black;
}

#Home .input-group{
    width: 40%;
    height: 45px;
    text-align: center;
    
}

.signin{
    background: green !important;
    color: white !important;
    width: 100%;
   
    
}

/****about*****/

#about{
    background:black;
}
#about{
    font-weight: 800;
    font-size: 20px;
    color: gray;
}
#about p{
    color:white;
}
#varities{
    background-color: white;
}
#varities img{
    width: 200px;
    height:200px;
}

.card{
    width: 250px;
    height: 300px;
    background:lightblue !important;
    border: none;
    box-shadow: 15px 20px 20px rgba(0, 0, 0, .3);
                inset: 4px 4px 10px white;
    border-radius: 20px !important;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin: 20px 60px;
    transition: .2s;
}

.card:hover{
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, .3);
                inset: -4px -4px 10px white;
    transition: .2s;
}

/*****contact***/
#contact{
    background-color: black;
}

#contact img{
    height: 100%;
}
.box{
    width: 120% !important;
    margin-top: 10px;
}
form{
    display: flex;
    flex-direction: column;
}
#contact input{
    margin: 10px 0px;
}
#contact textarea{
    margin: 10px 0px;
}