#contact-form {
    border: 5px solid var(--menu-text);
}

#contact-form h1 {
    font-size: 3rem;
    position: absolute;
    top: 0;
}

#contact-form label {
    font-size: 1.5rem;
    padding: 20px;
}

#c-name,
#email,
#user-msg {
    width: 80%;
    font-size: 1.2rem;
    border: 3px solid var(--menu-text);
    
}

#user-msg {
    font-size: 1rem;
    height: 20%;
    resize: none;
}

#contact-btn,
#return-btn,
.home-link {
    height: 44px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--game-bg);
    background-color: var(--player-cell);
    cursor: pointer;
    position: absolute;
    top: 88%;
}

.home-link {
    top: 50%;
}

#contact-btn {
    width: auto;
    right: 9%;
}

#return-btn {
    left: 9%;
}

#thank-you-msg h2 {
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    top: 25%;
}

@media screen and (max-width: 479px) {
    #contact-form h1 {
        font-size: 2.2rem;
    }
}