/* Name: Remi Zyzniewski*/


body {
  margin: 0;
  font-family: allura;
  /*Arial, Helvetica, sans-serif;*/
  font-size: 20px;
  background-color: white;
  margin-left: 170px;
}

.center {
  text-align: center;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 17px;
  text-align: center;
  font-family: Helvetica;
  margin: 0 auto;
}

table tr:first-child td {
  font-weight: bold;
  font-size: 30px;
  /* technique of styling only the first row of the table taken from https://stackoverflow.com/questions/10450221/apply-style-to-cells-of-first-row */
}


/* The sidebar menu */
.sidenav {
  height: 100%;
  width: 120px;
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #add8e6;
  /*alternate color is #ade2e6 */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 30px;
  /* sidenav bar technique and styling taken from https://www.w3schools.com/html/html_layout.asp */
}

/* The navigation menu links */
.sidenav a {
  padding: 12px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Responsive sidebar settings for Mobile */


div.content {
  margin-left: 120px;
  padding: 1px 16px;
  height: 1000px;
}

@media screen and (max-width: 1024px) {
  .sidenav {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

@media screen and (max-width: 600px) {
  .sidenav a {
    text-align: center;
    float: none;
  }
/* End of Responsive sidebar items */

/* Style index page content */
.index_main {
  padding: 0px 10px;
}

/* Style header */
.header {
  background-color: Lite Blue;
  padding: 10px;
  font-size:5vw;
  color: #add8e6;
  text-align: center;
}

.header img {
  float: left;
  width: 100px;
  height: 100px;
  /* logo image technique learned from https://stackoverflow.com/questions/11701311/logo-image-and-h1-heading-on-the-same-line */


}


.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid black;
  border-right: 1px solid black;
  text-align: center;
}
/* Technique learned from https://medium.com/evodeck/responsive-data-tables-with-css-grid-3c58ecf04723 */

.grid > span {
  padding: 8px 10px;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}

iframe {
  width: 75px;
  height: 75px;
  position: relative;
  opacity: 0;
  z-index: 1;
}

.outer {
  background-image: url('https://seeklogo.com/images/T/twitter-2012-negative-logo-5C6C1F1521-seeklogo.com.png');
  /* Picture obtained from https://seeklogo.com/free-vector-logos/twitter */
  background-size: 75px 75px;
  width: 75px;
  height: 75px;

}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}



/* Image Box Style section */

* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 5%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}