#about-main{
    width: 100vw;
    height: 100vh;
    background-color: #2a70c4;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    font-size: 3rem;
    color: #dce6e3;
}

#about-main h1{
    margin-top: auto;
    margin-bottom: auto;
}

/* svg */
#about-main .down-arrow{
    margin-bottom: 2%;
    width: 48px;
    height: 48px;
    
}

/* about paragraph */

#about-info{
    height: 70vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dce6e3;
    text-align: center;
    margin: auto;
}

#about-info h2{
    width: 80vw;
    font-size: 3rem;
    font-weight:300;
    line-height: 1.3;
}

/* transition animation with JS */

.hidden{
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-in;
}

.show{
    opacity: 1;
    transform: translateY(0);
}



