﻿/* set color styles in this sheet */

.background-color-base {
    background: #FAFAFA;
}

.background-color-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("../images/background-gradient-web.png");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}


@media only screen and (max-width: 500px) 
{
    .background-color-gradient {
        background-image: url("../images/background-gradient-mobile.png");
        width: 150vw;
        height: 150vh;
    }
}
