
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background: #383a3f;
    color: white;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    font-size: 18px;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.background {
    background: #7a7a7a;
    width: 100%;
    padding: 1em;
    margin: 2em 0;
}

h1 sup {
    opacity: 0.5;
}

textarea {
    width: 700px;
    height: 300px;
    background: #6c6c6c;
    border: 1px solid #b4b4b4;
    border-radius: 0.25em;
    padding: 0.5em;
    color: white;
    font-size: 1em;
    margin: 0 0 1em;
}

textarea::placeholder {
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    width: min-content;
    margin: 0 auto;
}

.languageWrap {
    text-align: right;
}

button, select {
    background: #eaeaea;
    border: 1px solid #b4b4b4;
    border-radius: 0.25em;
    font-size: 1em;
    padding: 0.5em;
    transition: background-color 0.3s;
}

button:hover, select:hover, button:focus, select:focus {
    background: #f5f5f5;
}
