* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}
body {
    background-color: rgb(247, 247, 249);
}
h1, h2 {
    text-align: center;
    font-size: 60px
}
h3 {
    margin: 20px 0 5px 0;
}

#form {
    display: flex;
    flex-flow: column nowrap;
    width: 80%;
    margin: auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px 2px rgb(190, 190, 190);
}
#form input {
    padding: 5px;
}
#form label {
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 15px;
}

#checkboxList {
    margin-bottom: 10px;
}
#checkboxList * {
    margin-bottom: 10px;
}
#checkboxList input {
    height: 15px;
    width: 15px;
}
#checkboxList input {
    color: red;
}
#checkboxList input:hover {
    cursor: pointer;
}

button {
    padding: 10px;
}
button:hover {
    cursor: pointer;
}