@charset "UTF-8";
 
/* EW: Much of this is lifted from the Hermit Hugo Theme */

#spotlight {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 93%;
    margin: auto;
    font-size: 1.5rem
}

#home-footer {
    text-align: center;
    font-size: .6em;
    line-height: normal;
    opacity: .6
}

#home-center {
    display: flex;
    justify-content: center
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}


html {
    background: #ffffcc;
    line-height: 1.6;
    letter-spacing: .06em;
    scroll-behavior: smooth
}

body {
    color: #003399;
    font-family: trebuchet ms, Verdana, verdana ref, segoe ui, Candara, lucida grande, lucida sans unicode, lucida sans, Tahoma, sans-serif
}



/*
EW: marquee effect from
https://stackoverflow.com/questions/21233033/how-can-i-create-a-marquee-effect
*/

.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    height: 32px;
    display: block;
}

.marquee span {
    display: inline-block;
    text-indent: 0;
    overflow: hidden;
    -webkit-transition: 15s;
    transition: 15s;
    -webkit-animation: marquee 15s linear infinite;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(100%, 0);
        -webkit-transform: translateX(100%);
    }
    100% {
        transform: translate(-100%, 0);
        -webkit-transform: translateX(-100%);
    }
}
