:root{
    --content-max-width: 50%;
    --title-font-size: 45pt;
    --artifice-yellow: rgba(254, 219, 55, 0.75);
    --artifice-red: rgba(177, 1, 1, 0.75);
    --artifice-green: rgba(1, 110, 10, 0.75);
}

html{
    max-width: 100vw;
    height: 100vh;
    
    overflow-x: hidden;
    background-color: #111;
}
body{
    margin: 0;
    padding: 0;    
}
header{
    background-color: black;
    width: 100vw;
    height: 60px;

    position: fixed;
    top: 0;

    display: flex;
    flex-direction: row;
    align-items: center;

    /*border-bottom-color: white;
    border-bottom-style: solid;
    border-bottom-width: 3px;*/
}
main{
    margin: 0;
    padding-top: 60px;
    height: calc(100vh - 90px);
    /* background-image: linear-gradient(black , #333 15%, #333 85%, black ); */
}
footer{
    background-color: black;
    color: white;
    width: 100vw;
    height: 30px;

    position: fixed;
    bottom: 0;

    /*border-top-color: white;
    border-top-style: solid;
    order-top-width: 3px;*/
}
#header-name{
    background-color: transparent;
    text-align: left;
    font-size: var(--title-font-size);

    height: auto;

    display:inline-flex;
    /* padding-left: 60px; */
}
#footer-copy{
    background-color: transparent;
    color: silver;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: xx-small;
    height: 10px;
    padding-top: 10px;
    text-align: center;
}
#logo{
    margin:10px;
    display:inline-flex;
}
.midline{
    height: 11px;

    margin-left:10px;
    margin-right:10px;

    border-bottom-style: solid;
    border-bottom-width: 1px;

    display:inline-flex;
    flex-grow: 100;
}
#home-midline{
    animation: midline-home 10s infinite;
    animation-delay: 4.0s;
}
#mission-midline{
    animation: midline-mission 10s infinite;
    animation-delay: 4.0s;
}
#contact-midline{
    animation: midline-contact 10s infinite;
    animation-delay: 4.0s;
}

div.contained {
    display: inline-block;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size:17pt;
    color: black;
}
.header-link{
    background-color: transparent;
    text-align: left;
    font-family: sans-serif;
    font-size:10pt;

    color:#444;

    justify-content: space-around;

    margin-right:20px;

    display:inline-flex;
}
.header-link:hover{
    font-weight:bold;
}
.yellow-link{
    color: rgb(254, 219, 55);
    font-weight: bold;
}
.red-link{
    color: rgb(177, 1, 1);
    font-weight: bold;
}
.green-link{
    color: rgb(1, 110, 10);
    font-weight: bold;
}
#header-link-container{
    height:auto;
    position: absolute;
    right:40px;

    display: inline-flex;
}
/*CAROUSEL CSS*/
.carousel-container{
    margin: auto;
}
.carousel-slide-info-container{
    margin: auto;
    max-width: var(--content-max-width);
}
.carousel-slide{
    display:none;
    height: calc(100vh - 90px);
    justify-content:center;
    align-content:center;
    flex-direction:column;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(129, 110, 1);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.carousel-slide-quote{
    font-size: 25pt;
    font-style: italic;
    font-family: sans-serif;
    color: #AAA;
    
    text-indent: -100px;
    padding-left: 100px;
    right: 0px;

    background: linear-gradient(60deg,#FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%);

    background-clip: text;
    color: transparent;

    -webkit-background-clip: text;
}
.carousel-slide-author{
    font-size:15pt;
    font-style: italic;
    font-family: sans-serif;
    color: #AAA;
    text-align: right;

    right: 0px;

    background: linear-gradient(60deg,#FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.carousel-slide-meaning{
    font-size: 16pt;
    font-style: italic;
    font-family: sans-serif;
    color: #AAA;
    
    text-indent: -100px;
    padding-left: 100px;
    padding-top: 7vh;
    right: 0px;

    background: linear-gradient(60deg, #AAA, #333);

    background-clip: text;
    color: transparent;

    -webkit-background-clip: text;

    -webkit-animation: fade-in 6s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fade-in 6s; /* Firefox < 16 */
        -ms-animation: fade-in 6s; /* Internet Explorer */
         -o-animation: fade-in 6s; /* Opera < 12.1 */
            animation: fade-in 6s;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
a {
    color: inherit;
    text-decoration: none;
}

a:hover 
{
     text-decoration:none; 
     cursor:pointer;  
}

#mission-statement{
    height: calc(100vh - 90px);

    font-family: sans-serif;
    font-size: 25pt;
    font-style: italic;

    text-align: center;

    margin: auto;
    max-width: var(--content-max-width);
    color: #AAA;

    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;

    background: linear-gradient(60deg,rgb(177, 1, 1) 0%, rgb(63, 0, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

#contact-link{
    font-size:15pt;
    font-style: italic;
    font-family: sans-serif;
    text-align: center;

    margin:auto;

    background: linear-gradient(60deg,rgb(1, 110, 10) 0%, rgba(1, 63, 29, 0.87));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

#contact-link-container{
    margin: auto;
    max-width: var(--content-max-width);
    height: calc(100vh - 90px);

    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}
#info-email{
    font-size:10pt;
    font-style: italic;
    font-family: sans-serif;
    text-align: center;

    margin:auto;

    background: linear-gradient(60deg,rgb(1, 110, 10) 0%, rgba(1, 63, 29, 0.87));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.backlight-yellow{
    animation: backlight-yellow 10s infinite;
}
.backlight-red{
    animation: backlight-red 10s infinite;
}
.backlight-green{
    animation: backlight-green 10s infinite;
}

#l1 {
    animation-delay: 0.0s;
}
#l2 {
    animation-delay: 0.2s;
}
#l3 {
    animation-delay: 0.4s;
}
#l4 {
    animation-delay: 0.6s;
}
#l5 {
    animation-delay: 0.8s;
}
#l6 {
    animation-delay: 1.0s;
}

#l7 {
    animation-delay: 1.2s;
}

#l8 {
    animation-delay: 1.4s;
}

#l9 {
    animation-delay: 1.6s;
}

#l10 {
    animation-delay: 1.8s;
}
#l11 {
    animation-delay: 2.0s;
}

#l12 {
    animation-delay: 2.2s;
}

#l13 {
    animation-delay: 2.4s;
}

#l14 {
    animation-delay: 2.6s;
}

#l15 {
    animation-delay: 2.8s;
}
#l16 {
    animation-delay: 3.0s;
}

#l17 {
    animation-delay: 3.2s;
}

#l18 {
    animation-delay: 3.4s;
}

#l19 {
    animation-delay: 3.6s;
}

#l20 {
    animation-delay: 3.8s;
}

@media only screen and (max-width: 768px){
    div.contained {
        font-size: x-large;
    }

    #header-name{
        font-size: var(--title-font-size);
    }
    :root{
        --content-max-width: 80%;
    }
    .carousel-slide-quote{
        text-indent: 0px;
        padding-left: 0px;
    }
    .carousel-slide-meaning{
        text-indent: 0px;
        padding-left: 0px;
    }
}
@media only screen and (max-width: 450px){
    .carousel-slide-quote{
        text-align: center;
    }
    .carousel-slide-meaning{
        text-align: center;
    }
}
@media only screen and (max-width: 616px){
    #header-link-container{
        top: 60px;
        left: 10px;
    }
    .midline{
        display: none;
    }
}

@keyframes backlight-yellow {
    0% {
        filter: blur(0px);
        color: black;
    }
    50% {
        filter: blur(1px);
        color: var(--artifice-yellow);
    }
    100% {
        filter: blur(0px);
        color: black;
    }
}
@keyframes backlight-red {
    0% {
        filter: blur(0px);
        color: black;
    }
    50% {
        filter: blur(1px);
        color:  var(--artifice-red);
    }
    100% {
        filter: blur(0px);
        color: black;
    }
}
@keyframes backlight-green {
    0% {
        filter: blur(0px);
        color: black;
    }
    50% {
        filter: blur(1px);
        color: var(--artifice-green);
    }
    100% {
        filter: blur(0px);
        color: black;
    }
}

@keyframes midline-home {
    0%{
        border-bottom-color: black;
    }
    50%{
        border-bottom-color: var(--artifice-yellow);
    }
    100%{
        border-bottom-color: black;
    }
}
@keyframes midline-mission {
    0%{
        border-bottom-color: black;
    }
    50%{
        border-bottom-color: var(--artifice-red);
    }
    100%{
        border-bottom-color: black;
    }
}
@keyframes midline-contact {
    0%{
        border-bottom-color: black;
    }
    50%{
        border-bottom-color: var(--artifice-green);
    }
    100%{
        border-bottom-color: black;
    }
}

  @keyframes fade-in {
    from { opacity: 0;
           color: #333; }
    to   { opacity: 1; 
           color: transparent; }
}

/* Firefox < 16 */
@-moz-keyframes fade-in {
    from { opacity: 0;
        color: #333; }
 to   { opacity: 1; 
        color: transparent; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fade-in {
    from { opacity: 0;
        color: #333; }
 to   { opacity: 1; 
        color: transparent; }
}

/* Internet Explorer */
@-ms-keyframes fade-in {
    from { opacity: 0;
        color: #333; }
 to   { opacity: 1; 
        color: transparent; }
}