body {
    width: 100%;
    min-width: 360px;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}


/* Header styles */


#header {
    background-color: #fff;

    padding: 24px;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header > a {
    cursor: pointer;
    height: 32px;
    width: 124px;
}

#header > div > a {
    margin: 0 8px;
    color: #2D237E;
    text-decoration: none;
}

#header > div > a:hover {
    transition: .15s;
    border-bottom: 2px solid #2D237E;
}

@media (max-device-width: 500px) {
    #header {
        padding: 32px;
    }

    #header > a {
        height: auto;
        width: 252px;
    }

    #header > div > a {
        font-size: 36px;
    }
}


/* Footer styles */


#footer {
    opacity: .6;

    padding: 8px 0 16px 0;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-device-width: 500px) {
    #footer {
        font-size: 32px;
    }
}
