.gameFrame {
  max-width: 90%;
  width: 750px;
}

.description {
  border-radius: 5px;
  /* min-height: 70px; */
  padding: 10px;
  color: white;
  display: flex;
  flex-direction: column;
}

.menu {
  max-width: 90%;
  width: 750px;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  gap: 3px;
}

.menu button {
  color: white;
  background-color: rgb(98, 0, 255);
  transition: all 0.2s ease;
  border: none;
  font-size: large;
  border-radius: 5px;
  width: auto;
  height: auto;
}

.menu button:hover {
  transform: scale(1.1, 1.1);
  background-color: rgb(125, 44, 255);
  cursor: pointer;
}

.fullscreen {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  top: 0;
  left: 0;
  border-radius: 0;
}

.mainContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - var(--sidebarWidth));
}

iframe {
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 10px;
  width: 80%;
  aspect-ratio: 16 / 9;
  transition: all 0.2s ease;
}

.description p {
  color: white;
}

.gameGrid {
  width: 1000px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}

#column {
  display: flex;
  flex-direction: column;
}

#column p {
  color: white;
}

.gameInfo {
  background-color: rgb(32, 32, 32);
  width: 1340px;
  max-width: 99%;
  margin: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
}

.gameInfo img {
  width: 200px;
  max-width: 99%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin: 10px;
  border-radius: 5px;

}

.gameLists {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gameLists h2 {
  width: 1000px;
  max-width: 100%;
  text-align: center;
}