body {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    width:100%;
    margin: 0;
    padding: 0;
}

.description {
    margin-top: min(1vh, 1vw);
}

h1 {
    font-size: min(6vh, 6vw);
    margin-top: min(3vh, 3vw);
    margin-bottom: min(1vh, 0.5vw);
}

p, label {
    font-size: min(2vh, 2.5vw);
    margin: min(1vh, 1vw);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: min(12vh, 18vw);
    position: relative;
}

input[type=text], input[type=password], input[type=email] {
    border: 2px solid;
      border-radius: 4px;
    margin: min(1vh, 1vw);
    font-size: min(2vh, 2.5vw);
}

.button, input[type=submit] {
    background-color: #1c9baa;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

select {
    margin-bottom: 12px;
    width: min(85%, 120vh);
}

form {
    margin: 12px;
}