/* hero section */

.hero {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-evenly;
    
}

.hero-text {
    padding:20px;
    border-radius:15px;
}

.hero-title {
    font-size:70px;
    font-family:'Poppins';
    font-weight:500;
    margin:0;
}

.hero-description {
    font-size:20px;
    font-family:'IBM Plex Mono';
    font-weight:400;
    margin:0;
    margin-bottom:70px;
    line-height:40px
}

.hero-image {
    border-radius:200px;
    width:350px;
    padding:50px;
}

/* youtube section */

.youtube {
    background-color:#8bb1e8;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    margin-top:50px;
    margin-bottom:150px;
    padding-top:50px;
    padding-bottom:50px;
}

.video {
    padding:30px;
    width:30vw;
}

/* books section */

.books {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    margin-top:100px;

}

.book-img {
    width:20vw;
    padding:10px;
}

/* research section */

.research {
    background-color:#8bb1e8;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    margin-top:100px;
    padding-top:60px;
    padding-bottom:60px;
}

.research-img {
    width:20vw;
    margin-right:100px;
    margin-left:120px;
    border-radius:10px;
}

/* bettering section */

.bettering {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    margin-top:140px;
    margin-bottom:130px;
}

.bettering-img {
    width:20vw;
    margin-right:80px;
    margin-left:100px;
    border-top-left-radius:20px;
    border-bottom-right-radius:20px;
    margin-bottom:115px;
}

