.body {
  background-color: #353535;
  overflow-x: hidden;
  max-width: 100%;
  justify-content: center;
}

.thumbnailBox {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  height: max-content;
}

.homeThumbnail {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 200px;
  justify-content: center;
}

.homeThumbnail.hover {
  background-color: #454553;
}

.homeThumbnailContainer {
  padding: 20px;
  border: 1px solid #454553;
  border-radius: 20px;
}

.homeThumbnailContainer.hover {
  background-color: #454553;
}

.homeHeader {
  text-align: center;
  font-size: 50px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  padding-bottom: 20px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-around;
  background: radial-gradient(farthest-side, #232323, #353535);
}
.homepage {
  background-color: #353535;
}

.flex-container {
  padding: 5px;
  height: 100%;
  width: 100%;
  border: 0px solid red;
  display: flex;
  background-color: #353535;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: space-around;
}

a {
  color: white;
  text-decoration: none;
}

.itemContainer:hover {
  background-color: #454553;
}

.caption {
  font-family: Arial, Helvetica, sans-serif;
}

.itemContainer {
  padding: 20px;
  border: 1px solid #454553;
  border-radius: 10px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  margin: auto;
  width: 300px;
  height: 300px;
  flex-wrap: wrap;
  gap: 30px;
}
.caption {
  text-align: center;
}

.itemLabel {
  font-size: 300px;
  color: red;
}

.container {
  overflow: hidden;
}

.filterDiv {
  float: left;
  background-color: #353535;
  color: #ffffff;
  line-height: 100px;
  text-align: center;
  margin: 2px;
  display: none; /* Hidden by default */
}

.myBtnContainer {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 5px 5px;
  gap: 5px;
  opacity: 0.8;
  justify-content: center;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 8px 10px;
  background-color: #f1f1f1;
  cursor: pointer;
  border-radius: 3px;
}

/* Add a light grey background on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background to the active button */
.btn.active {
  background-color: #666;
  color: white;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f100;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header links */
.header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: rgba(103, 36, 0, 0.771);
  color: white;
}

/* Float the link section to the right */

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
}

.menu {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
