﻿.homeSlideContainer
{
    position: relative;
}
    .homeSlideContainer .overlay
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .homeSlideContainer h1
    {
        color: white;
        text-shadow: 5px 0px 5px RGBA(0, 0, 0, 1);
        font-size: 3em;
        font-weight: 400;
    }
@media (max-width: 899px)
{
    .homeSlideContainer h1
    {
        font-size: 4vw;
    }
}
@media (max-width: 599px)
{
    .homeSlideContainer h1
    {
        font-size: 1.3em;
    }
}