/* Definições de cor */
:root {
    --themeColor: #9825986f;
}

#header {
    margin: 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    background-color: var(--backgroundColor);
}
#content {
    margin: 0;
    width: 100%;
    position: absolute;
    top: 150px;
    height: calc(100% - 150px);
    text-align: center;
    align-content: center;
    overflow-y: auto;
}