body {
    background-color: black;
    margin-left: 0;
    display: flex;
    flex-direction: column;

    justify-content: center;
}

h1 {
    color: rgba(255, 255, 255, 0.20);

    font-family: 'Jomhuria', serif;
    /*font-size: max(2vh, 250px);*/
    font-size: 175px;
    font-style: normal;
    font-weight: 50;
    line-height: normal;
    letter-spacing: 20px;
    text-align: center;
    margin: 0 0 0 50px;
}

.contact-form {
    max-width: 800px;
    max-height: 800px;
    width: 80%;
    /*background-color: #fff;*/
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    border-radius: 25px;
    color: white;
    margin: auto;
    border-color: #45a049;
    /*border-style: solid;*/
    padding: 4vh;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-family: Quicksand, 'serif';
    color: dimgrey;
    font-size: 2em;
}

.contact-form input
{
    width: 100%;
    padding: 8px;
    margin-bottom: 50px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.6em;
}

.contact-form textarea {
    width: 100%;
    height: 150px;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.2em;
}


.contact-form button {
    margin-top: 40px;
    background-color: #45a049;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 30px;
}

.contact-form button:hover {
    background-color: #45a049;
}

@font-face {
    font-family: Quicksand;
    src: url("../Quicksand-LightItalic.otf") format("opentype");
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 85px;
        letter-spacing: 8px;
        margin-left: 0;
        text-align: left;
        padding-left: 7vw;
    }

    .contact-form {
        width: 80vw;
        padding: 0;
    }

    .contact-form label {
        font-size: 20px;
    }

    .contact-form input
    {
        width: 100%;
        padding: 8px;
        margin-bottom: 50px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 15px;
    }

    .contact-form textarea {
        width: 100%;
        height: 100px;
        padding: 8px;
        margin-bottom: 16px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 12px;
    }

    .contact-form button {
        margin-top: 30px;
        background-color: #45a049;
        color: #fff;
        padding: 10px 15px;
        border: none;
        font-size: 20px;
    }
}
