body {
    font-family: 'Roboto';
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

#header-contact-link {
    border-bottom: 2px solid rgba(0, 255, 251, 1);
}

.contact-us-container {
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    min-width: 296px;
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0 40px 0;
}

.contact-us-header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0px 0 40px 0;
}

.title {
    font-size: 48px;
    color: white;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    row-gap: 20px;
    flex: 1;
}

.contact-us-form label {
    font-size: small;
    margin: 0 0 3px 0;
    display: none;
}

.contact-us-form input {
    height: 30px;
    width: 310px;
    font-size: 12px;
    padding: 0 0 0 10px;
    border-radius: 4px;
    border: 2px solid white;
}

.message {
    font-family: Roboto;
    font-size: 12px;
    height: 125px;
    width: 300px;
    padding: 10px;
    border-radius: 4px;
    border: 2px solid white;

}

.contact-us-form button {
    height: 29px;
    font-family: roboto;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid white;
    background-color: black;
    color: white;
    padding: 3px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #03a9f4);
    background-size: 400%;
}

.contact-us-form button:hover {
    background-color: white;
    color: white;
    animation: email-submit-animation 10s linear infinite;
}

@keyframes email-submit-animation {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

.submit-thank-you {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 29px;
    font-family: roboto;
    font-size: 15px;
    cursor: default;
    border-radius: 4px;
    border: 1px solid white;
    background-color: black;
    color: white;
    padding: 3px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #03a9f4);
    background-size: 400%;
    text-align: center;
    animation: email-submit-animation 20s linear infinite;
}

/* Media query for screens smaller than 900px */
@media only screen and (max-width: 900px) {
    .header {
      padding: 10px 0px 75px 0px;
    }

    .random-song-flex {
        margin-top: 0px;
    }

    #header-contact-link {
        border-bottom: 1px solid rgba(0, 255, 251, 1);
    }
}

/* Media query for screens smaller than 425px */
@media only screen and (max-width: 425px) {
    .contact-us-container {
        border: none;
    }
}