*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


.cont{
    height: 200vh;
    width: 100%;
    background: #fff;
}



.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color:#fff;

}

.kathith{
    font-size: 2rem;
    margin: .5rem;
    position: absolute;
    left: 50%;  
    transform: translate(-50%);
}


.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}


.navbar-links li{
    list-style: none;

}


.navbar-links li a{
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    display: block;
}

.navbar-links li:hover{
    background-color: #555;
}

.toggle{
    position:absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 21px;
}

.toggle .bar{
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
}

@media (max-width: 400px){
    .toggle{
        display: flex;
    }
    .navbar-links{
        display: none;
        width: 100%;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }
    .navbar-links li{
        text-align: center;
    }
    .navbar-links li a{
        padding: .5rem 1rem;
    }
    .navbar-links.active{
        display: flex;
    }
}

p{
    margin: 25px;
    font-size: 20px;
}

hr{
    background-color: transparent;
    border: transparent;
}
.main{
    width: 70%;
    height: calc(200vh - 51px);
    background:#e2e2e2;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}


.img1{
    height: 300px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.main1{
    height: 40%;
    width: 100%;
    background-color: /*rgba(120, 0, 255, .7)*/#fff;
    position: relative;
}

.text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.cont1{
    height: 100vh;
    wisth: 100%;
}
