@font-face {
    font-family: Roboto;
    src: url('../font/Roboto/Roboto-VariableFont_wdth\,wght.ttf');
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    font-size: 16px;
}

body {
    background-color: aliceblue;
}

main {
    width: 400px;
    margin: 20px auto;
    padding: 25px;
    border: 2px black solid;
    border-radius: 15px;
    background-color: burlywood;
    box-shadow: 5px 5px 15px;
}

h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
}

section {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    width: 100%;
}

button {
    background-color: aquamarine;
}

select, input, button {
    width: 100%;
    border-radius: 5px;
    padding: 5px;
}