* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
body {
    margin: 0;
    padding: 0;
    flex-grow: 1;
    /* font-family: 'PT Sans', sans-serif; */
    font-family: 'Roboto';

    display: flex;
    flex-direction: column;

    background-image: url( '../../images/frontend/bgnd_savethedate_1800_1227_00.png' );
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

main {
    flex-grow: 1;

    background-color: var( --darkbrown-color );
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(49,36,165, 0.5);
}
#loader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    font-size: 12px;
}

@media only screen and (max-width: 600px) {
    body { background-image: url( '../../images/frontend/bgnd_savethedate_600_880.png' ); }
}
