/* general styles */
html {
    height: 100%!important;
    background-color: white;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif!important;
    height: 100%!important;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eaeded;
    min-height: 5.5rem;
    display: flex;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #ffffff !important;
    padding: 0.5rem 2.5rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-container {
    background-color: #eff3f8;
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
}

nav #logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

nav #tittle {
    font-size: 1.8rem;
    color: #3b66de !important;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#header-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f8c8d;
}

#header-time {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b66de;
    margin-top: -2px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    background-color: #3b66de;
}

footer {
    min-height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    color: #7f8c8d;
    background-color: #ffffff;
    border-top: 1px solid #eaeded;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.5rem 1rem;
}