body {
    min-width: 1200px;
    font-family: Lato;
    color: #666666;
    font-weight: lighter;
    padding-top: 90px;
}

header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 56px;
}

.headingLevel2 {
    font-size: 32px;
}

.headingLevel3 {
    font-size: 26px;
}

.headingLevel4 {
    font-size: 22px;
}

.headingLevel5 {
    font-size: 16px;
}

.headingLevel6 {
    font-size: 12px;
}

p {
    font-size: 18px;
    line-height: 30px;
}

.underlined {
    border-bottom: 3px double lightgrey;
    width: 700px;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 22px;
}

main {
    padding-left: 200px;
    padding-right: 200px;
}

code {
    background-color: #f7f7f7;
    padding: 4px;
    border: 1px solid #666666;
}

pre {
    background-color: #f7f7f7;
    padding: 4px;
    border: 1px solid #666666;
    font-size: 14px;
    font-weight: lighter;
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.col3 {
    display: flex;
    flex-direction: column;
    width: 33%;
}

.col4 {
    display: flex;
    flex-direction: column;
    width: 25%;
}

li {
    font-size: 20px;
}

hr {
    color: lightgrey;
    margin: 0px 40px 0px 0px;
}

.icon {
    color: #4dac71;
    padding: 10px;
    font-size: 20px;
}

.circledIcons {
    font-size: 18px;
    border: 1px solid #4dac71;
    border-radius: 40px;
    margin: 10px;
    width: 1.1em;
    text-align: center;
}

button {
    text-align: center;
    margin: 4px 2px;
    border-radius: 6px;
    cursor: pointer;
}

.buttonDefault {
    width: 160px;
    height: 60px;
    padding: 16px 24px;
    font-size: 20px;
}

.buttonSmall {
    width: 115px;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
}

.buttonBig {
    width: 165px;
    height: 80px;
    padding: 16px 24px;
    font-size: 24px;
}

.button1 {
    border: 2px solid lightgrey;
    background-color: white;
    color: #6a7474;
}

.button1:hover {
    background-color: #3ba666;
    color: white;
}

.button2 {
    border: none;
    background-color: #3ba666;
    color: white;
}

.button2:hover {
    border: 2px solid lightgrey;
    background-color: white;
    color: #3ba666;
}

.special {
    border: none;
    background-color: lightgrey;
    color: white;
}

.special:hover {
    border: 2px solid lightgrey;
    background-color: white;
    color: grey;
    transform: translate(5px, -5px);
}

img {
    border: 2px white solid;
    border-radius: 6px;
}

tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #ddd;
}

#defaultTable {
    border-collapse: collapse;
    width: 100%;
    font-size: 18px;
}

#defaultTable td, #defaultTable th {
    padding: 18px;
}

#defaultTable tbody {
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

#defaultTable tbody tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

#defaultTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}

#alternateTable {
    border-collapse: collapse;
    width: 100%;
    font-size: 18px;
}

#alternateTable td, #alternateTable th {
    padding: 18px;
}

#alternateTable tbody td {
    border: 1px solid #ddd;
}

#alternateTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}

.fit {
    width: 90%;
}

form {
    width: 100%;
    font-size: 20px;
}

input[type=text], input[type=email], select {
    width: 100%;
    font-size: 16px;
    background-color: #f7f7f7;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #666666;
}

input:focus, textarea:focus, select:focus {
    background-color: #d7ecd6;
}

textarea {
    width: 100%;
    font-size: 18px;
    font-family: Lato;
    padding: 12px 20px;
    background-color: #f7f7f7;
    font-weight: lighter;
}

input[type="checkbox"], input[type="radio"] {
    width: 0px;
    height: 0px;
}

input[type="checkbox"] + label, 
input[type="radio"] + label {
    padding-left: 2.4em;
    position: relative;
    line-height: 1.5em;
}

input[type="checkbox"] + label:before, 
input[type="radio"] + label:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

input[type="checkbox"] + label:before, 
input[type="radio"] + label:before {

    font-size: 18px;
    border: 1px solid #4dac71;
    border-radius: 4px;
    height: 1.6em;
    width: 1.6em;
    text-align: center;
    background: rgb(247, 247, 247);
    position: absolute;
    content: ' ';
    left: 0;

}

input[type="checkbox"]:checked + label:before, 
input[type="radio"]:checked + label:before {
    background: #3ba666;
    color: #ffffff;
    content: '\f00d';
}

input[type="radio"] + label:before {
    border-radius: 100%;
}
