﻿
.overlay-text {
    position: absolute;
    color: white;
    font-size: 3em;
    text-align: center;
    z-index: 100; 
    transition: color 3s;
}

    .overlay-text span {
        color: inherit;
        transition: color 3s;
    }

.overlay-line {
    position: absolute;
    top: 31%;
    left: 18%;
    width: 8px; 
    height: 30%;
    background: #cda274; 
    z-index: 100; 
}

#myTextLogo::before {
    content: url('../images/maplogo2.png'); 

    top: 30%;
    left: 19%; 
    vertical-align: middle;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

#myTextLogo {
    top: 30%; 
    left: 19%; 
    font-size: 1.5em; 
    color: #cda274;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); 
}

#myText1 {
    top: 30%; 
    left: 19%; 
    font-size: 3.5em; 
}


.fade-in {
    opacity: 0;
    animation: fadeIn ease 2s forwards; 
    -webkit-animation: fadeIn ease 2s forwards; 
    -moz-animation: fadeIn ease 2s forwards; 
    -o-animation: fadeIn ease 2s forwards;
    -ms-animation: fadeIn ease 2s forwards; 
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in-on-scroll {
    opacity: 0;
}

/* Extra small devices (phones, less than 600px */
@media (max-width: 600px) {
    #myText1 {
        font-size: 2.0em;
        left: 20%;
        top: 45%;
    }
    #myLine {
        top: 31%;
        left: 15%;
        width: 8px; 
        height: 23%;
        background: #cda274; 
        z-index: 100; 
    }
}
/*Small devices (portrait tablets and large phones, 600px and up */
@media (min-width: 600px) {
    #myText1 {
        font-size: 2.5em;
        left: 20%;
        top: 45%;
    }

    #myLine {
        top: 31%;
        left: 15%;
        width: 8px; /
        height: 23%;
        background: #cda274; 
        z-index: 100; 
    }
}
@media (min-width: 768px) {
    #myText1 {
        font-size: 3.0em;
        left: 19%;
        top: 47%;
    }

    #myLine {
        top: 30%;
        left: 15%;
        width: 8px; 
        height: 27%;
        background: #cda274; 
        z-index: 100; 
    }
}
/* Large devices (laptops/desktops, 992px and up */
@media (min-width: 992px) {
    #myText1 {
        font-size: 3.5em;
        left: 19%;
        top: 47%;
    }

    #myLine {
        top: 30%;
        left: 15%;
        width: 8px; 
        height: 27%;
        background: #cda274; 
        z-index: 100; 
    }
}
@media (min-width: 1200px) {
    #myText1 {
        font-size: 4.0em;
        left: 19%;
        top: 47%;
    }

    #myLine {
        top: 30%;
        left: 15%;
        width: 8px;
        height: 27%;
        background: #cda274;
        z-index: 100;
    }
}

