/* 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 {
    min-height: 5rem;
    display: flex;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: white;
}

nav #tittle {
    font-size: 3rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
    padding-left: 1rem;
}

nav #logo {
    height: 3rem;
    padding-right: 1rem;
}

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

footer {
    min-height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    color: black;
}