/* ======== RESPONSIVE CSS ========= */


/* ===================================================
		MIN WIDTH 
=================================================== */

@media (min-width: 992px) {
    .splash img.profile {
        position: absolute;
        left: -10%;
        bottom: 0;
        width: 110%;
    }
}


/* ===================================================
		MAX WIDTH 
=================================================== */
@media (max-width: 1200px) {
    body {
        font-size: 15px;
    }
}

/* mobile displays that are shown under the large breakpoint (992px) */
@media screen and (max-width: 991px) {
    h3 {
        font-size: 27px;
    }

    body {
        font-size: 12px;
    }

    .splash {
        background: #1C0F07;
    }

}

/* mobile displays that are shown under the medium breakpoint (768px) */
@media screen and (max-width: 767px) {
    .splash {
        font-size: 15px;
        padding-top: 30px;
    }

    .vote-no {
        font-size: 11px;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 50px;
    }

    .splash {
        font-size: 13px;
    }
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 42px;
    }

    .hide-mobile {
        display: none;
    }
}

@media screen and (max-width: 350px) {}

@media screen and (max-width: 300px) {}




/* ===================================================
		MIN - MAX WIDTH 
=================================================== */

/* 768px - 991px MEDIUM Size */
@media (min-width: 768px) and (max-width: 991px) {}

/* 768px - 1200px MEDIUM AND LARGE Size */
@media (min-width: 768px) and (max-width: 1199px) {}

/* 992px - 1199px LARGE size */
@media (min-width: 992px) and (max-width: 1199px) {
    .splash {
        font-size: 13px;
    }
}