body {
    justify-items: center;
    width: 100vw;
    padding: 0;
    height: 100vh;
    background: linear-gradient(to bottom right, rgb(175, 32, 32), rgb(219, 70, 70), rgb(235, 145, 145));
}

#valor {
    justify-content: space-evenly;
    margin-top: 3em;
    min-height: 37vh;
}

.divs {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 40vh;
    min-width: 50vw;
}

input, button {
    width: 100%;
    height: 5vh;
    border: none;
    font-weight: bolder;
    font-size: 1em;
    justify-self: center;
    align-self: center;
}

input:hover {
    border: solid 1px rgb(85, 79, 79);
}

h1 {
    margin: 5vh;
    margin-bottom: 10vh;
}

input[type="submit"] {
    background-color: rgb(15, 155, 15);
}

#historico, #historico-gerar-pdf{
    background-color: yellow;
}

label, button {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
}


h1, h2{
    font-family: "Permanent Marker", cursive;
    font-style: normal;
    margin-top: 5vh;
}

li{
    list-style-type: none;
    background-color: aliceblue; 
    padding: 1em;
}

ul{
    padding: 0;
    margin: 0;
    margin-top: 3em;
}

@media (max-width: 500px) {
    h1 {
        margin-bottom: 0;
        font-size: 13vw;
    }

    .divs {
        width: 80vw;
        min-height: 55vh;
    }
}