body.header {
  font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    background-color: #333;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 10px;
}
.imagecenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.navbar {
  /*overflow: hidden;*/
  background-color: #333;
}

.navbar a {
  float: center;
  font-size: 16px;
  color: white;
  padding: 6px 16px;
  text-decoration: none;
}

.wrapper {
  display: grid;
  grid-template-columns: 140px auto;
  /*grid-template-columns: 130px, 100%;*/
  gap: 1px;
  grid-auto-rows: minmax(100px, auto);
}
.One {
  /*grid-column: 1 / 1;*/
  grid-row: 1;
}
.Two {
  /*grid-column: 2 / 9;*/
  grid-row: 1;
}
.wrapper2 {
  display: grid;
  /* grid-template-columns: repeat(8, 1fr); */
  grid-template-columns: 130px, 1fr;
  gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.One2 {
  /*grid-column: 1 / 1;*/
  grid-row: 1;
}
.Two2 {
  /*grid-column: 2 / 9;*/
  grid-row: 1;
}

/*FlexBox settings*/
.flex-container {
  display: flex;
  flex-direction: column;
  background-color: DodgerBlue;
}

.flex-container > div {
  background-color: #f1f1f1;
  width: 100px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}
body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0
}
.row-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: blue;
    overflow: hidden;
}
.first-row {
    flex-grow: 1;
    border: none;
    margin: 0;
    padding: 0;
}
.second-row {
    flex-grow: 1;
    border: none;
    margin: 0;
    padding: 0;
}
.third-row {
    flex-grow: 1;
    border: none;
    margin: 0;
    padding: 0;
}

.fourth-row {
    flex-grow: 1;
    border: none;
    margin: 0;
    padding: 0;
}


/* Dropdown Button */
.dropbtn {
  font-size: 16px;
  border: none;
  color: white;
  padding: 6px 8px;
  background-color: inherit;
  margin: 0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  padding: 6px 4px;
  position: relative;
  display: inline-block;
  text-align:center;
  margin: 0 auto;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 90px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  /*float: none;*/
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: red;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* 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;
}

/* 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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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}
}
.copyright {
    border: none;
    color: white;
    text-align: center;
    margin: 0;
    height: 15px;
}

.tab { margin-left: 40px; }

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

.center {
  margin-left: auto;
  margin-right: auto;
}
