form {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-top: 25vh;
    color: white;
}

form label {
    margin: 10px 0 5px;
}

form input,
form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #555;
}

.content {
    display: block;
    max-width: 100vw;
    margin: 0 auto;
    width: 100%;
}

.abouth2 {
    padding-bottom: 30px;
    font-size: 2rem;
}

.contact-box {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#message{
    width: 500px;
    max-width: 500px;
}

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

    form {
        width: 70%;
    }

    #message{
        width: 100%;
    }
}