body,html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to top left, #28292A, #626264);
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: Georgia, serif;
    color: #D6D6D6;
  }
h1 {
    margin-top:10px;
    margin-bottom: 0px;
    font-size: 20pt;
    font-weight: normal;
  }
h2 {
    text-decoration-line: underline;
  }
a {
    text-decoration: none;
    color: #F58F7C;
  }

#wrapper {
    display: flex;
    justify-content: flex-start;
  }
#sidebar {
    position: sticky;
    top: 20px;
    margin-left: 0px;
    padding: 15px;
    padding-top: 10px;
    padding-left: 8%;
    padding-right: 25px;
    height: fit-content;
    background-color: black;
    color: rgb(251,250,246);
  }

#main {
    margin: auto;
    height: 100%;
    padding-left: 25px;
    padding-right: 10%;
    word-wrap: break-word;
    min-width: 20%;
  }
#linkbar{
    text-align: center;
    font-size: 15pt;
    position: sticky;
    top: 0px;
    width: 100.5%;
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(to left, #454647, #59595B);
  }
#linkbar a {
    text-align: center;
    color: #D6D6D6;
    padding: 3px;
  }
#linkbar a:hover {
    box-shadow: 0 0 0 0 rgba(242, 225, 253, 0.8), 0 0 0 0 rgba(242, 225, 253, 0.8);
    background-color: #533D3B;
    border-radius: 10px;
  }

#gridtiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 20px;
  }
.divtiles {
    text-align: center;
    width: 100%;
    border: 3px dotted #F58F7C;
    border-radius: 15px;
    background-color: #533D3B;
    transition: transform 0.5s;
    cursor: pointer;
  }
.divtiles:hover {
    transform: scale(0.95);
  }
.imgtiles {
    width: 90%;
    border-radius: 15px;
    background-color: rgb(248,248,248);
  }  
.tiledescription {
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
  }  

iframe {
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
  }
table {
    border-collapse: collapse;
    border: 2px black solid;
    height: 200px;
    display: block;
    overflow: scroll;
    table-layout: fixed;
    margin-left: auto;
    margin-right: auto;
  }
td {
    border: 1px black solid;
    padding: 5px;
  }

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(223, 223, 223);
  border-radius: 15px;
  }

.flex-child {
  flex: 1;
  }


/* For carisuol(???) of pictures */
.slideimg {
  height: 575px;
  width:100%;
}
.slideimgvertical {
    height: 575px;
    width:40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  * {box-sizing: border-box}
  /*body {font-family: Verdana, sans-serif; margin:0}*/
  .mySlides, .mySlides_fuel .FuelSlides, .FuelSlides_fuel {display: none}
  img {vertical-align: middle;}
  
  /* Slideshow container */
  .slideshow-container, .slideshow-container_fuel {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Next & previous buttons */
  .prev, .prev_fuel, .next, .next_fuel {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgb(45, 45, 45);
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next, .next_fuel {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .prev_fuel:hover, .next:hover, .next_fuel:hover {
    background-color: #533D3B;
  }
  
  /* Caption text */
  .text, .text_fuel {
    color: #131313;
    background: rgba(96, 96, 96, 0.5);
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext, .numbertext_fuel {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot, .dot_fuel {
    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, .active_fuel, .dot:hover, .dot_fuel:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade, .fade_fuel {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .prev_fuel, .next, .next_fuel, .text, .text_fuel {font-size: 11px}
  }
  
  @keyframes fade_fuel {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
      .prev, .prev_fuel, .next, .next_fuel, .text, .text_fuel {font-size: 11px}
  }