body, html {
    margin: 0;
    width: 100%;
}

body, textarea, button, input[type="number"] {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

textarea, button, input[type="number"] {
    border: 2px solid #009a00;
    border-radius: 3px;
    padding: 10px;
    width: calc(100%);
}

textarea, input[type="number"] {
    box-sizing: border-box;
    margin-top: 15px;
    margin-bottom: 15px;
}

textarea {
    min-height: 80px;
}

button {
    background-color: white;
    font-weight: bold;
    margin-top: 20px;
}

.radio-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.radio-button input{
    display: none;
}

.radio-button div {
    background-color: white;
    border: 2px solid #009a00;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-button input:checked ~ div:after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #009a00;
    border-radius: 50%;
}

h1 {
    width: 100%;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 38px;
}

h2 {
    padding-top: 30px;
    font-size: 16px;
    border-top: 1px solid rgb(80%, 80%, 80%);
}

form {
    padding-top: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-top: 1px solid rgb(80%, 80%, 80%);
    border-bottom: 1px solid rgb(80%, 80%, 80%);
}

a, a:visited, a:hover {
    color: black;
}

a:hover {
    text-decoration: none;
}

table {
    border-collapse: collapse;
}

table, td, th {
    font-size: 14px;
}

th {
    border-top: 1px solid rgb(80%, 80%, 80%);
}

td, th {
    padding: 8px 10px;
    border-bottom: 1px solid rgb(80%, 80%, 80%);
}

td:nth-of-type(2), th:nth-of-type(2) {
    text-align: right;
}

#main {
    width: 90%;
    padding: 30px 5%;
    max-width: 500px;
    margin: 0 auto;
    background-color: rgb(95%, 95%, 95%);
}
