body {
    background-color: #161616;
}

.contact-page {
    padding: 20px 20px;
    padding-top: 80px;
}

h1 {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    border-bottom: 1px white solid;
}

.contactform {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

input[type=name],
select {
    background-color: #4F5051;
    font-size: 14px;
    color: white;
    width: 590px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    justify-content: center;
    border: 1px solid white;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 10px;
}

input[type=email],
select {
    background-color: #4F5051;
    font-size: 14px;
    color: white;
    width: 590px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    justify-content: center;
    border: 1px solid white;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 10px;
}

input[type=massage],
select {
    background-color: #4F5051;
    font-size: 14px;
    color: white;
    width: 590px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    justify-content: center;
    border: 1px solid white;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 10px;
}


#fmassage {
    padding-bottom: 80px;
}


textarea {
    display: inline;
    width: 590px;
    height: 150px;
    padding: 12px 20px;
    margin-top: 0px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid white;
    background-color: #4F5051;
    color: #A3A3A3;
    font-family: roboto;
    resize: none;
}


#submitbtn {
    width: 590px;
    font-size: 14px;
    background-color: #4F5051;
    color: #D5D30F;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid #D5D30F;
    margin-bottom: 50px;
    margin-top: 5px;
}

#submitbtn:hover {
    background-color: #D5D30F;
    color: #161616;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #d9d9d9;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    align-items: center;
}

.modal-content p {
    color: #333333;
    font-size: 20px;
    font-family: Roboto;
    display: flex;
    justify-content: center;
}

.close {
    color: #333333;
    float: right;
    font-size: 20px;
    font-weight: bold;
    padding-top: 0px;
}

.close:hover,
.close:focus {
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 700px) {

    .contact-infopage {
        display: block;
        justify-content: center;
        padding: 40px 40px;
        padding-top: 60px;
    }

    h1 {
        display: flex;
        justify-content: center;
        padding-bottom: 60px;
        font-size: 48px;
    }

    input[type=text],
    select {
        width: 100%;
        padding: 12px 20px;
        margin: 8px 0;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    textarea {
        display: inline;
        width: 100%;
        height: 150px;
        padding: 12px 20px;
        margin-top: 0px;
        margin-bottom: 10px;
        font-family: roboto;
        resize: none;
    }

    #submitbtn {
        width: 100%;
        font-size: 14px;
        background-color: #4F5051;
        color: #D5D30F;
        padding: 14px 20px;
        margin: 8px 0;
        border: 1px solid #D5D30F;
        margin-bottom: 100px;
    }

}