@media screen and (max-width: 600px) {
    /* Text */
    .title-text {
        font-size: 3em;
    }

    .subtitle-text {
        font-size: 1.1em !important;
    }

    .text-container {
        margin-top: 1em !important;
    }

    .contact-items-container {
        flex-direction: column !important;
        gap: 3em;
    }
}

:root {
    --hl-grey: #818686;
    --hl-yellow: #E6BE22;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--hl-grey);
    text-align: center;
    min-height: 100vh;
    height: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    z-index: 2;
}

.wave {
    width: 100vw;
    position: fixed;
    bottom: 0;
}

.container-circle {
    min-width: 200px;
    min-height: 200px;
    width: 10vw;
    height: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: white;
}

/* Contact Container + Items */
.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    margin-top: 1em;
}

.contact-items-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 3em;
    margin-top: 1em;
}

.contact-item {
    display: flex;
    font-size: 1.1em;
    color: white;
    column-gap: 0.8em;
    margin: 0 auto;
}

.contact-item > a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.text-container {
    margin-top: 3em;
}

/* Text */
.title-text {
    font-size: 3em;
}

.subtitle-text {
    font-size: 1.5em;
}

/* Text Colors */
.text-green {
    color: var(--hl-yellow);
}
