*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-variant: small-caps;
}
body{
    height: 100vh;
}
.head-div1{
    background-color: rgb(41, 40, 40);
    width: 100vw;
    height: 13vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.head{
    height: 13vh; 
    position: sticky;
    top: 0;
}
.logo img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hand{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    margin-right: 40px;
}
.hand span{
    width: 22px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}
.logo h3{
    color: white;
}
.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nav{
    background-color: white;
    height: 100vh;
    z-index: 8;
    width: 250px;
    transform: translateX(-250px);
    position: fixed;
    transition: 0.3s;
}
.nav ul li{
    list-style-type: none;
}
.nav ul li a{
    display: block;
    padding: 10px;
    margin-left: 3px;
    margin-top: 3px;
    text-decoration: none;
    color: black;
    transition: 0.1s;
}
.nav ul li a:hover{
    background-color: gray;
    border-radius: 5px;
    color: white;
}
.active{
    transform: translateX(0px);
    box-shadow: 5px 5px 5px 0px black;
}
.foot{
    width: 100%;
    height: 11vh;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    text-align: justify;
    line-height: 22px;
}
.about h1{
    margin: 20px;
}
.about p{
    font-size: 20px;
    line-height: 30px;
}
.about h2{
    margin: 20px;
}
@media screen and (max-width:600px){
    .main-div1{
        font-size: 10px;
    }
    .foot{
        font-size: 10px;
    }
    .about p{
        font-size: 20px;
        line-height: 30px;
    }
}