/* MAIN */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 150px;
    row-gap: 5px;
}

.main-header {
    color: white;
    text-transform: uppercase;
    font-weight: 200;
}

.main-paragraph {
    color: white;
    width: 800px;
    text-align: center;
    font-weight: 200;
}

.anchor {
    color: white;
    font-weight: 400;
    text-decoration-thickness: 1px;
}

/* MEDIA QUERIES */

@media (max-width: 850px) {
    .main-paragraph {
        width: 100%;
    }
}