.main{
    height: calc(100vh - 80px);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    background-color: #000000;
    color:#fff;
    overflow-y: 1px transparent;
    
}
.main::-webkit-scrollbar {
	width: 0px;
}
.authorSec{
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.authorMain{
    height: calc(50% - 100px);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* border-bottom: 2px solid #fff; */
}
.authorInfo{
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.authorName{
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 25px;
}
.authorNameColor{
    color: #f93839;
}
.authorDesc{
    margin: 5px;
}
.authorImg{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid #000;
    background-position: center;
    background-size: cover;
    margin: 110px 0 0 50px;
    background-color: #000;
}
.authorImgImg{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}


/* Extra large devices (large laptops and desktops, 1780px) */
@media only screen and (max-width: 1780px) {}

/* Extra large devices (large laptops and desktops, 1200px) */
@media only screen and (max-width: 1200px) {
    .authorInfo{
        width: 90%;
    }
    .authorMain{
        flex-direction: column;
    }
    .authorName{
        font-size: 45px;
    }
    .authorImg{
        width: 300px;
        height: 300px;
        margin: 100px 0 0 0;
    }
}

/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {}

/* Medium devices (landscape tablets, 768pxp) */
@media only screen and (max-width: 768px) {}

/* Small devices (portrait tablets and large phones, 600px) */
@media only screen and (max-width: 600px) {}
