body {
    font-family: 'Trebuchet MS', sans-serif;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #181818;
}

.form-container {
    background: rgb(193, 193, 193);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.message, textarea {
    border: 1px solid #464646;
}

button {
    width: 100%;
    border: none;
    background-color: #ff00d8;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #292929;
}

@media screen and (orientation: landscape) {
    .form-container {
        padding: 4vw;
        border-radius: 1.5em;
    }

    .message, textarea {
        padding: 2vw;
        width: 27vw;
        border-radius: 1.5em;
        font-size: 1.5em;
    }

    button {
        margin-top: 2vh;
        padding: 3vw;
        border-radius: 1.5em;
        font-size: 1.5em;
    }
}

@media screen and (orientation: portrait) {
    .form-container {
        padding: 4vw;
        border-radius: 1.5em;
    }

    .message, textarea {
        padding: 2.5vw;
        width: 65vw;
        border-radius: 0.5em;
        font-size: 1.5em;
    }

    button {
        margin-top: 2vh;
        padding: 2vw;
        border-radius: 1.5em;
        font-size: 1.5em;
    }
}