/* font-family: 'Great Vibes', cursive; */
/* font-family: 'Roboto', sans-serif; */
/* font-family: 'Noto Serif', serif; */
* {
    margin: 0;
    padding: 0;
}

.wrapper {
    padding-top: 10vh;
    /* background: linear-gradient(to top, aqua, blue); */
    background-color: #24292e;
    display: flex;
    flex-direction: column;
}

/* nav {
    max-height: 10vh;
} */


main {
    margin-top: 2%;
    margin-bottom: 2%;
    background-color: white;
    align-self: center;
    height: 150%;
    width: 100%;
    border: 2px solid transparent;
    border-radius: 16px;
    color: black;
    max-width: 900px;
}

h1 {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    padding: 15px;
    text-align: center;

}

h2 {
    text-align: center;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;

}

p {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    padding: 10px 35px;
    text-align: justify;
    line-height: 150%;
}

footer {
    /* width: 90%; */
    flex-basis: 5%;
}

footer p {
    color: white;
    font-size: 2.5rem;
    font-family: 'Great Vibes', cursive;
    background-color: #24292e;
    text-align: center;
}




@media (max-width: 900px) {

    .wrapper {
        padding-top: 30vh;
    }

    .main {
        padding-top: 10vh;
    }
}

@media(max-width: 620px) {
    .wrapper {
        padding-top: 40vh;
    }

    main {
        width: 100%;
    }

}