.title__container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.title__text {
    color: var(--secondary-font-color);
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem; /* 48px */
    margin: 0;
    text-transform: uppercase;
}

.title__text--primary {
    color: var(--primary-color);
}

/* desktop and up */
@media (min-width: 1024px)  {
    .title__container {
        flex-direction: row;
        gap: 1rem; /* 16px */
    }
}
