html {
   font-family: Verdana, sans-serif;
    color: black;
}

h1, h2, h3 {
    color: steelblue;
}

a {
    color: black;
    text-decoration: underline solid black;
}

body {
    width: auto;
    height: auto;
    background-color: white;
}

label>input {
    margin: 1rem 0;
}

button, input {
    border: 2px solid black;
    background-color: whitesmoke;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

button:hover, input[type="submit"]:hover {
    background-color: lightgray;
}

.textinput {
    width: 300px;
}

.title-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.logo {
    min-width: 100px;
    width: 20vmax;
    max-width: 20vmin;
}

.title {
    padding: 0 2rem;
}

.error {
    color: tomato
}

.highlight {
    color: steelblue;
}

.standard {
    color: black;
}