main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: #fff;
    background: transparent;
    padding: 3rem;
}

main span {
    font-size: 2rem;
}

a {
    font-family: var(--font-secondary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 100;
    margin-top: 10px;
}

a:hover {
    text-decoration: underline;
}

main section h2 {
    font-family: var(--font-primary);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 0;
}

main section p {
    font-family: var(--font-secondary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 100;
    margin-top: 10px;
}

@media (max-width: 600px) {
    main {
        font-size: 2.2rem;
        padding: 2rem;
    }

    main span {
        font-size: 1.8rem;
    }

    a {
        font-size: 1rem;
    }

    main section h2 {
        font-size: 1.4rem;
    }

    main section p {
        font-size: 1.1rem;
    }
}