html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 18px;
    background: white;
}

.content {
    margin: 0 auto;
    width: 85%;
    max-width: 1300px;
    padding-top: 0.5%;
}

.title {
    text-align: center;
    color: #0075a5;
}

.centered-div {
    text-align: center;
}

select {
    border-radius: 8px;
    padding: 3px 8px;
    border: 1px solid #ccc;
    outline: none;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
}

label {
    color: #0075a5;
}

textarea {
    display: block;
}

button {
    background-color: #0075a5;
    border: none;
    color: white;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    box-shadow: 0 6px 6px -3px rgba(40, 40, 40, 0.3);
    cursor: pointer;
}

button:hover {
    background-color: #339ecb;
}

textarea {
    width: 50%;
}

ol {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}