*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #8c8aff;
    --secundary-color: #FFF1CC;
    --shadow-color: #CCC;
    --text-color: #FFF;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'karla', sans-serif;
    position:relative;
}

header{
    background-color: var(--primary-color);
    height: 70px;
    text-align: center;
    line-height: 70px;
    box-shadow: 0 1px 2px var(--shadow-color);
    margin-bottom: 24px;
}

.header-title{
    color: black;
    font-size: 2rem;
}

.relatorioTotal {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.dados {
    display: flex;
    justify-content: space-evenly;
}

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

.relatorio input {
    text-align: center;
    margin: 12px;
    padding: 8px;
    font-size: 16px;
}

.auto input {
    background-color: transparent;
    outline: none;
    border: 0;
    font-size: 24px;
    color: green;
}

main{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 96%;
    margin: 5vh auto;
    padding: 50px;
    box-shadow: 2px 2px 10px var(--shadow-color);
    gap: 20px;
}

form select {
    width: 150px;
    background-color: #e0e0e0;
}

footer{
    width:100;
    text-align: center;
    font-weight: 200;
    font-style: italic;
    padding: 20px;
}

@media (max-width:480px){
    header{
        position:fixed;
        width:100%;
    }
    .header-title{
        font-size: 1.5rem;
    }

    main{
        padding: 0;
        margin: 20px 0 0 0;
        width:100%;
        box-shadow: none;
    }
}