body{
  margin-top: 60px;
  background-color: #aaa;
}

.navbar {
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    background-color: #333;
    position: fixed;
    width: 100%;
    top:0;
    left:0;
  }
  
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  
}

.dropdown {
  float: left;
  overflow: hidden;
  
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position:fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.half-img {
  width: 50%;
  float: left;
}

.third-img {
  width: 33%;
  float: left;
}

.art-img {
  width: 33%;
  float: none;
}

  /* Style for the popup container */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* Style for the popup content */
.popup-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Style for the individual images in the popup */
.popup-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 20px;
}

/* Style for the close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Style for the modal content */
.modal-content {
  display: block;
  margin: 10% auto;
  padding: 20px;
  max-width: 800px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Style for the close button */
.close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #333;

}

.image{
  cursor: pointer;
  width: 33%;
}



.modal-row{
  display: flex;
  flex-wrap: wrap; /* Wraps images onto the next row if necessary */
  justify-content: center; /* Horizontally centers images within the container */
  align-items: center; /* Vertically centers images within the container */
}

.modal-image {
  flex: 1; /* Allows images to grow or shrink based on the available space */
  margin: 0px; /* Adds some margin between the images */
  max-width: 100%; /* Limits the maximum width of the image to its container width */
  object-fit: cover; /* Scales the image while preserving aspect ratio and filling the container */
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  float: left;
}

.image-container img {
  flex: 1;
  max-width: 100%;
  margin: 5px;
}


.zoom {
  flex: 1;
  max-width: 100%;
  margin: 5px;
  transition: transform 0.2s ease-in-out;
}

.zoom:hover {
  transform: scale(1.1);
  z-index: 2;
}

.column3 {
  float: left;
  width: 33%;
  padding: 0px;
  
}

.column2 {
  float: left;
  width: 50%;
  padding: 0px;
  
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.left{
  float:left;
}

.right{
  float:right;
  padding-right: 20px;
}

.credits-images {
  height: auto;
  margin: 10px auto;
}

.credits-images img {
  width: 100%;
  height: auto;
}

figure {

  margin: 0;
  padding: 10px;
}

figcaption {
  
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
}

.review-table {
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

.review-table th {
  cursor: pointer;
}

.review-table th, td {
  text-align: left;
  padding: 16px;
}

.review-table tr:nth-child(even) {
  background-color: #f2f2f2
}

.review-table-search {
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

body{
  padding-left: 10%;
  padding-right: 10%;
}

.code-container {
  position: relative;
  background-color: black;
}

.copy-button {
  position: absolute;
  top: 0;
  right: 0;
}

.dev-img{
  width: 50%;
  display: block;
  margin: auto;
}

.pdf {
    width: 100vw;
    height: 100vh;
}

.banner-container {
  position: relative;
  width: 100%;
  float: left;
  cursor: pointer;
}

.banner {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  transform: 100;
  transform: translate(0, -100%);
  
}

.banner-image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  display: block;
}

.banner-container:hover .banner-image {
  opacity: 0.3;
}

.banner-container:hover .banner {
  opacity: 1;
}

.banner-text {
  background-color: #04AA6D;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

.game-container{
  display: flex;
  width: 100%;
  height: 100%;
}

.game-column {
  flex: 1; /* Each column takes up 50% of the width */
  display: flex;
  flex-direction: column;
}

.game-column img {
  width: 100%; /* Each image fills the column width */
  height: auto; /* Maintain aspect ratio */
  display: block;
}