body {
	line-height: 1.7;
  color: var(--text);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear; 
	scroll-behavior: smooth;
  text-align: center;
}

.nav-btn {
  line-height: 1;
}

h2 {
  font-weight: 700;
  font-size: 40px;
}

h3 {
  font-weight: 300;
  font-size: 30px;
  margin: 10px;
}

.main-content {
  margin-top: 85px;
}

.gameframe-container{
  display: flex;
  flex-direction: column;
  margin: 20px 200px;
  border-radius: 15px;
  box-shadow: 0px 26px 58px 0px rgba(0,0,0,0.22), 0px 5px 14px 0px rgba(0,0,0,0.18);
}

.openaboutblankbutton {
  color: var(--text);
  background: var(--background3);
  border: 0px;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 300ms;
  cursor: pointer;
  margin: 10px 0px;
}

.openaboutblankbutton:hover {
  background: var(--text);
  color: var(--text-secondary);
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: var(--background3);
  padding: 10px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.left{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.right {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.game-image {
  height: 30px;
  width: 30px;
  border-radius: 5px;
}

#gamename {
  padding-left: 10px;
  font-size: 16px;
}

.gameframe {
  height: 70vh;
  border: 3px solid var(--background3);
  overflow: scroll;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.expand,
.heart {
  border: none;
  background: transparent;
}

.expand-logo,
.heart-logo {
  transition: transform 200ms;
  border: none;
  cursor: pointer;
  font-size: 26px;
}

.expand-logo:active,
.heart-logo:active {
  transform: scale(0.95);
}

@media screen and (max-width: 1000px) {
  .gameframe-container {
    margin: 50px 100px;
  }
}

@media screen and (max-width: 800px) {
  .gameframe-container {
    margin: 50px 50px;
  }
}

.box {
  background: var(--background3);
  border-radius: 15px;
  margin: 10px 200px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .box {
    margin: 10px 100px;
  }
}

@media screen and (max-width: 800px) {
  .box {
    margin: 10px 50px;
  }
}