
/* We will use a fancy font from Google Fonts */
/* See google-webfonts-helper */

.fancy-font-title {
    font-family: "EB Garamond", "Ms Madi", "Crimson Pro", Times, serif;
    font-size: 175%;
}

.fancy-font-header {
    font-family: "Libre Franklin", Ariel, sans;
    font-size: 175%;
}

.fancy-font-body {
    font-family: "Libre Franklin", Ariel, sans;
    font-size: 125%;
}

.fancy-font-subtitle {
    color: #000000;
    font-family: "Libre Franklin", Ariel, sans;
    font-size: 150%;
    text-shadow: 0px 0px 1px #FFFF00;
}

.fancy-font-footer {
    font-family: "Libre Franklin", Ariel, sans;
    font-size: 75%;
}

/* Provide a fancy background.  */
/* Use four background images, each rotated by 90 degrees from the previous.
 * Transition between them by animating opacity.  */

.fancy-main {
    position: relative;  
}

@keyframes animate-000 {
    000% {opacity: 1.0}
    025% {opacity: 0.0}
    050% {opacity: 0.0}
    075% {opacity: 0.0}
    100% {opacity: 1.0}
}

@keyframes animate-090 {
    000% {opacity: 0.0}
    025% {opacity: 1.0}
    050% {opacity: 0.0}
    075% {opacity: 0.0}
    100% {opacity: 0.0}
}

@keyframes animate-180 {
    000% {opacity: 0.0}
    025% {opacity: 0.0}
    050% {opacity: 1.0}
    075% {opacity: 0.0}
    100% {opacity: 0.0}
}

@keyframes animate-270 {
    000% {opacity: 0.0}
    025% {opacity: 0.0}
    050% {opacity: 0.0}
    075% {opacity: 1.0}
    100% {opacity: 0.0}
}

.fancy-background-000 {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/blended_background_000.png');
    background-color: black;
    background-repeat: no-repeat;
    background-position: 50% 0; 
    background-size: cover;
    opacity: 1.0;
    z-index: -1;
    animation-name: animate-000;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.fancy-background-090 {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/blended_background_090.png');
    background-color: black;
    background-repeat: no-repeat;
    background-position: 50% 0; 
    background-size: cover;
    opacity: 0.0;
    z-index: -1;
    animation-name: animate-090;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.fancy-background-180 {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/blended_background_180.png');
    background-color: black;
    background-repeat: no-repeat;
    background-position: 50% 0; 
    background-size: cover;
    opacity: 0.0;
    z-index: -1;
    animation-name: animate-180;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.fancy-background-270 {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/blended_background_270.png');
    background-color: black;
    background-repeat: no-repeat;
    background-position: 50% 0; 
    background-size: cover;
    opacity: 0.0;
    z-index: -1;
    animation-name: animate-270;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.fancy-content {
    position: relative;
}
