.app__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background);
    min-height: 100vh;
    padding-bottom: 3rem;
}


.app__contact-head {
    margin-top: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app__contact-head h1 {
    font-size: 86px;
    text-transform: uppercase;
    color: var(--color-textHeading);
}

.app__contact-head p {
    font-size: 22px;
    line-height: 1.5em;
    text-align: center;
    color: var(--color-text);
    width: 80%;
}

.app__contact-head p a {
    color: var(--color-10);
}

.app__contact-head p a:hover {
    color: var(--color-textHeading);
}

.app__contact-form {
    background: var(--color-60);
    margin-top: 4rem;
    width: 40%;
    padding: 1rem;
    border-radius: 15px;
}

.app__contact-form form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app__contact-form label {
    margin: 0.5rem 0;
    font-size: 22px;
    line-height: 1.5em;
    color: var(--color-textHeading) ;
}

.app__contact-form input {
    border-radius: 10px;
    height: 38px;
    font-size: 1.3rem;
}

.app__contact-form textarea {
    border-radius: 10px;
    font-size: 1.3rem;
}

.app__contact-form button {
    align-self: end;
}

@media screen and (max-width: 1250px) {
    .app__contact-form {
        width: 60%;
    }
}

@media screen and (max-width: 950px) {
    .app__contact {
        justify-content: start;
    }

    .app__contact-head {
        align-items: center;
    }

    .app__contact-head h1 {
        font-size: 62px;
    }
    
    .app__contact-head p {
        font-size: 18px;
        width: 80%;
    }
}

@media screen and (max-width: 550px) {
    .app__contact-head h1 {
        font-size: 40px;
    }
    
    .app__contact-head p {
        font-size: 16px;
    }

    .app__contact-form {
        width: 80%;
    }

    .app__contact-form input {
        height: 30px;
        font-size: 1.2rem;
    }
    
    .app__contact-form textarea {
        font-size: 1.2rem;
        height: 275px;
    }
    
    .app__contact-form button {
        align-self: center;
        width: 100%;
    }


}

@media screen and (max-width: 350px) {

}