.control-form {
    display: flex;
    flex-direction: column;
    width: 20%;
    margin-bottom: 2em;
}

.button {
    background: #0DE093;
    padding: 20px 8px;
    border-bottom: 4px solid #15ac74;
    border-radius: 4px;
    margin: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1.3em;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 250ms;
}

.button:hover {
    filter:brightness(1.04);
    transform: scale(1.04);
    border-bottom-width: 0;
}

#result {
    font-size:1.1em;
}

.hr {
    width:50%;
    opacity: 0.2;
}

.statistics-title-container {
    display: flex;
    flex-direction: row;
    margin-top: 4em;
    margin-bottom: 2em;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    justify-content: center;
}

.statistics-title {
    color: #444;
    margin:0;
    font-size: 2em;
    font-family: 'Lato', sans-serif;
}

.refresh {
    padding: .5em;
}

#footer {
    text-align:center;
}

#footer p {
    margin:0;
    padding:1em;
    font-size:1em;
    color:whitesmoke;
}

.rounded-bottom {
    border-radius: 0 0 5% 5%;
}

.title-align {
    display: flex;
    align-items: center;
}

.info {
    padding:1em;
    padding-bottom: 0;
}

@media only screen and (max-width: 1600px) {
    .control-form {
        width: 40%;
    }
}

@media only screen and (max-width: 1000px) {
    .control-form {
        width: 60%;
    }
}

@media only screen and (max-width: 768px) {
    .control-form {
        width: 80%;
        margin-bottom: 1em;
    }
    h1 {
        margin: 15px 0;
    }
    .p-8 {
        padding: 3em 1.5em;
    }
    
}