@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    font-family: "Manrope", serif;
    font-size: 2vw;
    font-weight: 400;
    font-style: normal;
    color: #eee;
    margin: 0;
    text-align: center;
}

body {
    background-color: #111;
    padding: 0;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    opacity: 50%;
}

.flex-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0;
    height: 100vh;
}

.flex-div-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 6rem;
}

/* OLD RESPONSIVE METHOD

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 1rem;
    }

    p {
        font-size: .75rem
    }

    .flex-div-2 {
        padding: 1rem 2rem;
        gap: 8px
    }
}

*/