*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
}

/* hero section */
.container{
    padding: 20px;
    display: flex;
}

.hero{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) , url("../img/donutwallpaper.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    height: 65vh;
}


span{
    color: aqua;
}

.hero .header .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    background: black;
    left: 0;
    position: fixed;
    width: 100%;
}

.logo img{
    width: 50px;
    background-color: transparent;

}

.hero .header .nav ul{
    display: flex;
    justify-content: space-around;
}
.hero .header .nav ul li{
    list-style: none;
    width: 100px;
}
.hero .header .nav ul li a{
    color: white;
    font-size: 20px;
}

.hero .contents{
    margin-left: 20px;
    margin-top: 50px;
    text-align: center;
}

.hero .header h1{
font-size: 50px;
font-weight: bold;
}

.hero .header p{
font-weight: bold;
font-size: 30px;
}
.orderInHeader{
    text-align: center;
    padding: 50px;
}

.orderButton{
    width: 150px;
    height: 55px;
    border-radius: 25px;
    border: none;
    background-color: #ffffffba;
    transition: 0.3s;
    font-weight: bold;
    font-size: 20px;
}
.orderInHeader :hover{
    background-color: aqua;
    transition: 0.3s;
    color: white;
}


/* end hero section */

.about-us .contents{
    /* background-color: rgba(0, 0, 0, 0.5); */
    margin: 20px;
    padding: 20px;
    text-align: center;
    color: black;

}

.aboutText{
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.5);
}



.about-us .container .box{
    display: flex;
    justify-content: space-around;
    cursor: default;
}


.about-us .container .box ul{
    list-style: none;
    line-height: 20px;
}

.about-us .container .box img{
    width: 30%;
    transition: 0.3s;
}

.container .box img:hover{
    width: 35%;
    transition: 0.3s;
}

.container .box ul h3{
    transition: 0.3s;
}


.container .box ul h3:hover{
    color: aqua;
    transition: 0.3s;
}

@media (max-width: 840px){
    .about-us .container .box{
        flex-wrap: wrap;
    }
    .about-us .container .box img{
        width: 70%;
    }
    
}

/* end about section */

/* collection section */
.collection .collection-contents{
    padding: 20px;
    margin: 20px;
    display: flex;
    justify-content: space-evenly;
}

.collection h2 {
    text-align: center;
    display: block;
}

/* gallery copied */
div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
/* end collection section */

/* footer section  */
.footer .container {
    display: block;
    
}
.footer .links{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    margin: auto;
}
.footer  .links ul{
color: white;
}
.footer  .links li{
    color: white;
    line-height: 3;
}
.footer  .links li a{
    color: white

}
.footer  .links li a:hover{
    color: aqua

}
/* end footer section */