
.main-background {
    height: 100%;
    width:100%;

    
}

.main-title {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
    min-width: 100%;
    min-width: 100vh;

    display: flex;
    align-items: center;
}

.main-title h1 {
    text-align: center;
    width: 100%;
    font-size: 100pt;
    color: black;
}

.main-title h2 {
    text-align: center;
    width: 100%;
    font-size: 60pt;
}

.nav-item a {
    color: black;
    font-weight: bold;
}

.nav-item a:hover {
    color: white;
}

.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1; 
}

.cb-slideshow ul {
    list-style-type: none;
}

.cb-slideshow li {
    list-style-type: none;
}

.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: -1;
    animation: imageAnimation 36s linear infinite 0s; 
}

.cb-slideshow li:nth-child(1) span { 
    background-image: url(slides/2.jpg) 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(slides/3.jpg);
    animation-delay: 6s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(slides/1.jpg);
    animation-delay: 12s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(slides/2.jpg);
    animation-delay: 18s; 
}
.cb-slideshow li:nth-child(5) span { 
    background-image: url(slides/3.jpg);
    animation-delay: 24s; 
}
.cb-slideshow li:nth-child(6) span { 
    background-image: url(slides/1.jpg);
    animation-delay: 30s; 
}

.cb-slideshow li:nth-child(2) div { 
    animation-delay: 6s; 
}
.cb-slideshow li:nth-child(3) div { 
    animation-delay: 12s; 
}
.cb-slideshow li:nth-child(4) div { 
    animation-delay: 18s; 
}
.cb-slideshow li:nth-child(5) div { 
    animation-delay: 24s; 
}
.cb-slideshow li:nth-child(6) div { 
    animation-delay: 30s; 
}

@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 0.9; animation-timing-function: ease-out; }
    17% { opacity: 0.9 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}