main {
  display: flex;
  justify-content: center;
}
.full-container {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  min-height: 400px;
  border: 3px solid black;
  padding: 30px;
  background-color: rgb(182, 237, 255);
}
.games-container {
  display: flex;
  justify-content: center;
}

.game-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.game-image-container {
  width: 220px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border: 2px black solid;
}

.game-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}


.add-review-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.owned-game {
  width: 220px;
  padding-top: 2px;
  height: 25px;
  text-align: center;
  border: 1px solid black;
  font-size: 16px;
  background-color: rgb(133, 0, 0);
  color: white;
}

.not-owned-game {
  margin-top: 2px;
  width: 220px;
  padding-top: 2px;
  height: 25px;
  text-align: center;
  border: 1px solid black;
  font-size: 16px;
  background-color: rgb(32, 32, 32);
  color: white;
}

.not-owned-game:hover {
  cursor: pointer;
  background-color: white;
  color: black;
}

.review-game {
  margin-top: 2px;
  width: 220px;
  padding-top: 2px;
  height: 25px;
  text-align: center;
  border: 1px solid black;
  font-size: 16px;
  background-color: rgb(32, 32, 32);
  color: white;
}

.review-game:hover {
  cursor: pointer;
  background-color: white;
  color: black;
}

.game-details-container {
  width: 100%;
  text-align: center;
}


.game-details {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  width: 700px;
  align-items: stretch;
}

.game-title {
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-family: 'Tourney', cursive;
  margin: 10px 0 0 0;
}

.game-avg-rating {
  font-size: 25px;
}

.game-genre {
  width: 100%;
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  color: rgb(88, 0, 0);
}
.game-description {
  margin-bottom: 30px;
}

.owned-by-text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  text-align: center;
  font-size: 15px;
  text-decoration: underline;
}

.owner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 700px;
}

.owner {
  font-size: 12px;
  margin: 3px;
  text-decoration: none;
  color: black;
}
.owner:hover {
  color: red;
}

.edit-btn-container {
  width: 1066px;
}

.edit-btn {
  border: none;
  background-color: rgb(250, 254, 255);
  font-family: 'Staatliches', cursive;
  opacity: .5;
  height: 21px;
}

.edit-btn:hover {
  cursor: pointer;
  opacity: 1;
  border: 1px solid black;
  background-color: rgb(255, 208, 99);
}

.review-text {
  font-size: 24px;
  font-family: 'Tourney', cursive;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  width: 1100px;
}

.review-content-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  width: 500px;
  margin: 0 25px 20px 25px;
}

.review-title {
  font-size: 23px;
  font-weight: 600;
  color: rgb(0, 2, 139);
  font-family: 'Tourney', cursive;
}

.review-title:hover {
  color: red;
}

.review-stars {
  font-size: 20px;
}

.game-reviews {
  font-size: 18px;
}