section, hgroup, header, nav, article, aside, footer {
    display: block;
}

hgroup {
    font-family: 'Aldrich', sans-serif;
    font-size: 150%;
    text-align: center;
    padding: 8px 10px;
}

header {
    text-align: center;
}

section {
    font-family: 'Offside', cursive;
    font-size: 110%;
    text-align: center;
}

aside {
    text-align: center;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    font-family: 'Aldrich', sans-serif;
    font-size: 80%;
    padding: 8px 10px;
    margin-top: auto;
}

textarea, select, button {
    outline: none;
    padding: 8px 10px;
    margin: 8px 10px;
    border-radius: 5px;
}

textarea {
    resize: none;
    height: 110px;
    font-size: 15px;
    padding: 8px 10px;
}

select {
    font-size: 14px;
    background: none;
}

ol {
    list-style-type: decimal;
    max-height: 200px;
    overflow-y: scroll;
}

li {
    border-bottom: 1px solid #ddd;
    padding: 5px;
    margin: 10px;
}

button {
    height: 50px;
    width: 200px;
    color: #fff;
    font-size: 17px;
    background-color: #675afe;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease;
}

button:hover {
    background-color: #4534fe;
}

form {
    text-align: center;
}

.inputForm {
    margin: 5px;
    height: 30px;
    width: 200px;
}