/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

tab {
    margin-left: 4em;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #a5a5a5;
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

header {
    /* background: #333; */
    color: #fff;
    padding: 10px 0;
}

html {
    scroll-behavior: smooth;
}

nav {
    display: flex;
    /* background: #333; */
    justify-content: space-between;
}

helpList {
    list-style: decimal;
}

helpList li a {
    color: #fff;
    text-decoration: none;
}

overviewContainer {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
}

overviewList {
    padding: 16px;
    list-style: decimal;
}

overviewList li {
    color: #fff;
    text-decoration: none;
}

nav ul {
    text-decoration: none;
    /* background: #79ba5d; */
}

nav li {
    list-style: none;
    /* padding-inline: 25px; */
    /* background: #79ba5d; */
    padding-inline: 25px 0px;
}

nav li a {
    color: #fff;
    text-decoration: none;
}

nav ul li {
    /* background: #5d93ba; */
    list-style: none;
    display: inline;
    padding-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* main {
    padding: 20px;
    text-align: center;
} */

leftie {
    padding: 20px;
    text-align: left;
}

main {
    padding: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

middlecontainer {
    margin-top: 50px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    text-align: center;
    justify-content: center;
}

main ul {
    grid-template-rows: 1fr 1fr;
    justify-content: center;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 50px;
}

main ul li {
    padding-inline: 25px;
    font-size: 24px;
}

main ul li a {
    color: #fff;
    text-decoration: none;
}

main ul li img {
    padding-inline: 10px;
    filter: brightness(100%);
}

.leftcontainer {
    display: grid;
    text-align: left;
}

.liner {
    display: inline-flex;
    text-align: left;
    align-items: center;
}

.title {
    font-size: 25px;
    margin-left: 10px;
    margin-right: 5px;
}

.text {
    font-size: 18px;
    margin-inline: 5px;
    margin-left: 10px;
    margin-right: 10px;
    width: fit-content;
}

.text li {
    font-size: 16px;
    text-indent: 50px;
}

.imageA {
    margin-top: 20px;
    margin-inline: 5px;
}

.image {
    text-align: center;
    margin-top: 100px;
}

quote {
    font-size: 20px;
    font-style: italic;
    padding: 40px;
}

footer ul {
    display: flex;
    flex-flow: row wrap;
    /* overflow: hidden; */
    /* width: max-content; */
}


footer {
    flex-flow: row;
    /* background: #333; */
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* overflow: hidden;  */
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul {
    margin-right: 20px;
    height: 20px;
}

footer li {
    color: #fff;
    list-style: none;
    margin-left: 20px;
    white-space: nowrap;
    height: 100%;
}

footer ul li {
    list-style: none;
}

/* Slideshow container */
.slideshow-container {
    padding-top: 40px;
    max-width: 1000px;
    position: relative;
}
  
/* Hide the images by default */
.mySlides {
    text-align: center;
    display: inline-flex;
}
  
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


p a {
    color: #fff;
}

p a href {
    color: #fff;
}
  
/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
  
/* The dots/bullets/indicators */
.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;
}
  
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}