/* =========================
   CONTACT PAGE
========================= */

* {
    box-sizing: border-box;
}

.contact_container {
    display: flex;
    justify-content: center;

    width: 100%;
    padding: 250px 200px;
    margin: 0;

    text-align: center;

    
}

.contact_content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 850px;

    /* Equal spacing around the line */
    gap: 30px;
}

/* Remove all automatic browser spacing */
.contact_content h1,
.contact_content hr,
.contact_content ul,
.contact_content li {
    margin: 0;
    padding: 0;
}

.contact_content h1 {
    color: #fc1a1a;

    font-family: Poppins, sans-serif;
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 700;
    line-height: 1;

    text-shadow: 0 5px 5px rgb(0 0 0 / 50%);
}

.contact_container span {
    color: #ffffff;
    
}

/* Divider centered equally between heading and Discord */
.contact_content hr {
    width: 500px;
    height: 2px;

    border: none;
    background-color: #333333;
    border-radius: 999px;
}

/* Discord and email container */
.contact_content ul {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    gap: 18px;

    list-style: none;
}

.contact_content li {
    width: 100%;
}

.contact_content a {
    display: inline-block;
    max-width: 100%;

    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: clamp(22px, 2.5vw, 40px);
    line-height: 1.3;
    text-decoration: none;

    overflow-wrap: anywhere;

    text-shadow: 0 5px 5px rgb(0 0 0 / 50%);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.contact_content a:hover {
    color: #fc1a1a;
    transform: scale(1.03);
}

@media (max-width: 700px) {
    .contact_container {
        padding: 70px 20px 35px;
    }

    .contact_content {
        gap: 22px;
    }

    .contact_content ul {
        gap: 14px;
    }

    .contact_content a {
        font-size: 21px;
    }
}