html, body {
    padding:0;
    margin:0;
}

body {
    font-family: sans-serif;
    color:#000000;
    font-size:100%;
    font-weight: normal;
    background-color: gainsboro;
}

li {
    line-height: 130%;
}

.topNav {
    font-size: 80%;
    padding:1%;
}

.topNav .admin {
    float:right;
}

.container {
    width:70%;
    max-width:1200px;
    margin-left:15%;
    margin-right:15%;
    background-color: white;
    padding:3%;
    padding-bottom: 5%;
    border-radius: 30px;
    color:#525151;
    margin-bottom:10%;
    filter: drop-shadow(1px 6px 5px #878787);
    line-height:140%;
}

.centered {
    text-align: center;
}

.container h1, .field h3 {
    margin-top:0;
}
.container h1 {
    font-weight: lighter;
}

button, input[type='submit'] {
    padding:1% 3% 1% 3%;
    background-color: dodgerblue;
    border-radius: 10px;
    color:white;
    margin-top:3%;
    border:none;
    text-decoration: none;
    font-size: 120%;
    font-weight: bold;
}
button:hover, input[type='submit']:hover {
    background-color: cadetblue;
    cursor: pointer;
}

label {
    display: block;
    font-weight: bold;
    margin-top:1%;
}

input, select {
    display:block;
}

select {
    border-radius: 8px;
}

button {
    display: inline-block;
    transition: all 0.5s;
    color:white;
    text-align: center;
    cursor: pointer;
}

button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

button:hover span {
    padding-right: 25px;
}

button:hover span:after {
    opacity: 1;
    right: 0;
}

input[type='checkbox'] {
    display:inline-block;
}

input[type='text'], select, checkbox {
    padding:2%;
    margin-top:2%;
    width: 100%;
}

.fieldsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.field {
    width:40%;
    margin:1%;
    padding:2%;
    background-color: whitesmoke;
    border-radius: 10px;
    text-align: left;
}

.recommendations .field {
    background-color:#edf7f5;
}

.field:hover {
    background-color:#edf7f5;
}

ol {
    padding-left:1.2em;
}

.statsContainer {
    margin-top:5em;
}
