section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section:nth-child(1) {
    color:  black;
}
section:nth-child(2) {
    color:  black;
}
section:nth-child(3) {
    color: black;
}
section .container {
    margin: 100px;
}
section h1 {
    font-size: 3rem;
    margin: 20px;
}
section h2 {
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
}
section .text-container .text-box {
    margin: 20px;
    padding: 20px;
    background: rgb(139, 218, 124);
}
section .text-box .text-container h3 {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}
@media(max-width: 900px) {
    section h1 {
        font-size: 2rem;
        text-align: center;
    }
    section .text-container {
        flex-direction: column;
    }
}
.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}
.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

p {
    font-size: 20px;
}
