:root {
    --Height: 100vh;
    --border-color: black;
    --MainborderW: 3px;
}

* {
    font-family: 'Varela Round', sans-serif;
}

h1 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: xxx-large;
    margin-top: 15px;
    margin-bottom: 15px;
}

html {
    background-color: #BAA06F;
}

body {
    display: flex;
    height: var(--Height);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

input, textarea {
    outline: none;
    color: black;
}

input {
    border: var(--MainborderW) solid var(--border-color);
    border-radius: 4px;
}

textarea {
    border: var(--MainborderW) solid var(--border-color);
    border-radius: 6px;
}

button {
    appearance: none;
    border: var(--MainborderW) solid var(--border-color);
    border-radius: 5px;
    color: black;
    width: 60px;
    height: 30px;
    text-align: center;
}

textarea {
    resize: none;
    margin-bottom: 10px;
    margin-top: 10px;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    text-align: center;
    background-color: burlywood;
    border: var(--MainborderW) solid var(--border-color);
    border-radius: 6px;
    padding: 10px;
}

#nameinput {
    width: 200px;
}

@media only screen and (max-width: 800px) {
    textarea {
        width: 85%;
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: normal;
    }
}

@media only screen and (max-width: 600px) {
    .info {
        width: 75%;
        padding: 10px;
        margin: auto;
        word-wrap: normal;
    }

    textarea {
        width: 85%;
    }

    .buttons {
        width: 200px
    }
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: xx-large;
    }

    .info {
        width: 68%;
    }

    textarea {
        width: 85%;
    }
}