body {
    background-image: url("./assets/paintbrush.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    margin: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1;

    font-family: 'Montserrat', sans-serif;

    font-size: 1.3vh;
    color: #231f20;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1, h3, h2 {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    padding: 10px 14px;
}

h3, .timer {
    margin: 0;
}
h1{
    font-size: 5em;
}
h2{
    font-size: 3em;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lg-cta {
    visibility: hidden;
}

.lg-cta > img {
    width: 35%;
    height: auto;
}

.logo {
    background-color: #F9FBFA;
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.site-links {
    display: flex;
    flex-direction: row;
}

.site-links > a {
    text-decoration: none;
    color: #fff;
    margin: 0px 15px;
}

.site-links > a:hover {
    text-decoration: underline;
}


.notice {
    color: #269575;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 50px;
}

.notice a{
    color: #269575;
}

.notice h2{
    margin-left: 20px;
}

.footer {
    z-index:2;
    background-color: #2C302C;
    height: 100px;
    display: flex;
    align-items: end;
    padding: 50px;
    color: #fff;
}

.footer > img {
    width: 100%;
    height: auto;
}

.timer {
    background-color: #231f20;
    color: #fff;
    text-align: center;
    font-size: 2.5vh;
    font-family: 'Consolas';
    padding: 10px 14px;
}

/* .footer { 
    display: none;
} */

.lg-cta {
    visibility: visible;
}

.site-links > a {
    font-size: 1.2rem;
}
@media screen and (max-width: 960px) { 
    .notice {
        flex-direction: column !important;
    }
}