*{
    box-sizing: border-box;
}
/*navbar */
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    text-decoration: none;
}

.brandlogo{
    width: 190px;
    height: 80px;
 margin-left: 9px;
 
}

.logo{
    color: rgb(245, 182, 11);
    line-height: 80px;
    font-size: 35px;
    padding: 0 70px;
    font-family: cursive;
    font-weight: bold;   
}

.btn{
    border: 7px;
    background-color: rgb(192, 51, 51);
    color: whitesmoke;
    font-weight: bold;
    border-color: black;
    border-radius: 15px;
    padding:8px 15px;
}
.btn:hover{
    background-color: whitesmoke;
    color: black;
    border: solid;
}
.checkbtn{
    font-size: 30px;
    float: right;
    color: white;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
@media(max-width:952px){
    .logo{
        font-size: 30px;
        padding-left:50px;
    }
    
}
@media(max-width:858px){
    .checkbtn{
        display: block;
    }
}


/*contact page*/

header{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: top;
    background-image: url("https://images.unsplash.com/photo-1606791422814-b32c705e3e2f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80");
}

.header-content{
    text-align: center;
    color: whitesmoke;
    margin-bottom: 259px;
}
.header-content h2{
   text-shadow: 1px 1px 14px rgba(0, 0, 0, 0.88);
    font-size:4.0rem;
    text-decoration-color:white; 
}
.header-content h4{
    font-size: 1.4rem;
   font-family: cursive;
   font-weight: 900;
}
.label{
    font-size: 2.5rem;
    margin: 3%;
    text-align: center;
    margin-left: 1%; 
}
strong{
    font-size: 1.2rem;
    
}
.a{
    color: cornflowerblue;
}
.a:hover{
    color: black;
}

.container {
    display: flex; 
    flex-wrap: wrap; 
  }
  
  .left-para, .right-para {
    display: inline-block; 
    width: 50%; 
    box-sizing: border-box; 
    padding: 10px ; 
  }
  
  /* add media query for responsive design */
  @media screen and (max-width: 768px) {
    .left-para, .right-para {
      width: 100%;  }
  }
    /*footer*/
    .list{
        display: flex;
        list-style: none;
        margin: 0%;
      justify-content: space-evenly;
        color: white;
    }
    .list :hover{
        color: black ;
        border-radius: 5px;
    }
    .social{
        display: flex;
        align-items: center;
        justify-content:center ;
        margin-bottom: 2%;
       padding-left: 10px;
        padding-top: 3%;
        padding-bottom: -20%;
        font-size:xx-large;
    }
    .footer{
        background-color: dimgray;
        padding: 2%;
    }
    p{
        text-align: center;
        margin-bottom: 3%;
    }
    .one{
      margin-right: 2%;
    }
    .two{
        margin-right: 2%;
    }
    
    li a{
        font-size: 1.5rem;
        text-decoration: none;
        color: white;
    }
    li a:hover{
        text-decoration: none;
        color: black;
    }
    .pat{
        margin: 3%;
        font-size: 1.6rem;
    }
  
