body {
    font-family: Georgia serif, 'Times New Roman', Times, serif;
    background-color:  #f0f1f6;
    color: #424656;
}

h1 {
    font-family: 'Courier New', Courier, monospace;
    text-decoration: underline;
    text-underline-offset: 6px;
}

button {
    background-color: #2B8FFF;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.5em;
    font-weight: 600;
    transition: 0.5s;
}

button:hover {
    transition: 0.5s;
    background-color: #00C6BF;
    cursor: pointer;
}

input {
    width: 200px;
    border-radius: 10px;
    padding: 0.5em;
}

.controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    font-weight: 600;
}

.controls .form {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1em;
    margin: 0.5em 0;
    border-radius: 10px;
    font-size: 1.17em;
}

.controls .print {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1em;
    margin: 0.5em 0;
    border-radius: 10px;
    width: fit-content;
    align-self: center;
}

.site-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.output-container {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
}

.output-sub-container {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1em;
    margin: 0.5em 0;
    border-radius: 10px;
}

.output-sub-container h3 {
    margin: 0;
}

@media screen and (max-width: 768px) {

    .controls {
        flex-direction: column-reverse;
    }
    
    input {
        margin-top: 0.5em;
    }

    button[type="submit"] {
        margin-top: 0.5em;
    }
}