@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    display: flex;
    margin: 0px;
    background-color: #1f1f1f;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh; 
    flex-direction: column;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

#main {
    flex: 1;
    padding: 25px;
    height: 100%;
    min-height: 100%;
}

a {
    color: lightgrey;
}

h1 {
    font-size: 4em;
}

p {
    font-size: 2em;
}

input {
    transition: 0.5s;
    background-color: #353232;
    border: none;
    border-radius: 0.5em;
    color: white;
    padding: 10px;
}

input:hover {
    background-color: #484444;
}

.error {
    border: red 2px solid;
}