.header{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}

.header h1{
    font-size: clamp(40px, 3.6vw ,70px);
    padding-left: clamp(5px, 5vw ,400px);
    text-align: left;
    width: 100%;
    color: #545454;
    margin: 30px 0px;
}

.header img{
    width: clamp(750px, 49vw ,950px);
    margin-bottom: 30px;
}

#newsedit h1{
    font-size: clamp(20px, 1.6vw ,90px);
}

.aboutSect h2{
    font-size: 30px;
    font-weight: 900;
    margin: 20px 0px;
    color: #654445;
}

.aboutSect{
    color: #545454;
    width: clamp(750px, 49vw ,950px);
}

.aboutSect .def p{
    font-size: clamp(20px, 1.3vw, 25px);
    font-weight: 700;
    line-height: 50px;
}

.def{
    margin-bottom: 50px;
}

/* *{
    outline: 1px solid red;
} */


#menu{
    display: none;
    position: absolute;
    top: 15px;
    left: 5px;
    font-size: 25px;
}

#plus{  
    display: none;
}

.subjectImage{
    width: 30vw;
}
@media screen and (max-width: 800px){ 

    #plus{
        display: flex;
    }

    #header h1 {
        display: none;
    }

    #header img {
        display: none;
    }

    .aboutSect h2{
        font-size: 30px;
        font-weight: 900;
        margin: 20px 0px;
        color: #654445;
    }

    .logo h1{
        font-size: clamp(14px,0.1vw,19px);
    }
    #menu{
        display: block;
    }

    header{
        display: none;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .aboutSect .def p{
        line-height: 35px;
    }

    .logo img{
        width: 50px;
    }

    nav ul{
        flex-direction: column;
        justify-content: space-around;
        height: 40vh;
        text-align: center;
        margin-bottom: 40vh;
    }

    ul li a{
        font-size: 50px;
        text-align: center;
        padding: 10px;
        width: 60px;
    }

    nav ul li a{
        font-size: 20px;
    }

    .aboutSect img{
        width: 100%;
    }

    .aboutSect{
        width: 350px;
    }

    .subjectImage{
        width: 90vw;
    }
}