@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');
:root{
	--proformer: #1b1b1b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
	font-family: 'Inter';
  background: #121212;
	line-height: 1.7;
	color: #fff;
	letter-spacing: 0.2px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear; 
	scroll-behavior: smooth;
  text-align: center;
}

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

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

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

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

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


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

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


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


.gameframe {
  height: 80vh;
  border: 3px solid #1b1b1b;
  overflow: scroll;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.star {
  border: none;
  background: transparent;
}

.star-logo {
  transition: transform .5s ease;
  border: none;
  cursor: pointer;
}

.star-logo:hover {
  transform: scale(0.9);
}

.expand {
  border: none;
  background: transparent;
}
.expand-logo {
  transition: transform .5s ease;
  border: none;
  cursor: pointer;
}

.expand-logo:hover {
  transform: scale(0.9); 
}

.game-stuff {
  background-color: #5ff5f5;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 6px 12px 0px;
}

#content-stuff {
  color: var(--game-stuff);
}

.expand-logo {
  font-size: 26px;
}

.star-logo {
  font-size: 26px;
}

.aboutblank {
  background: transparent;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 6px 12px 0px;
}

.aboutblanktitle {
  font-size: 24px;
}

.box-game {
  background: transparent;
  font-size: 10px;
  margin: 50px 200px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 6px 12px 0px;
}

.games-grid {
  gap: 10px;
  align-items: center;
  justify-content: center;
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, 150px);
  grid-auto-flow: row;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.7;
}

#urlInput {
  padding: 15px 20px;
  outline: none;
  background: #434956;
  border-radius: 10px;
  border: none;
  width: 50%;
  margin: 10px;
  color: #fff;
  font-size: 16px;
}

#copyButton {
  padding: 15px 20px;
  outline: none;
  background: transparent;
  border-radius: 10px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 300ms;
  font-size: 16px;
}

#copyButton:hover {
  background: #0d341c;
}

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

  .box-game {
    margin: 50px 100px;
  }

}

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

  .box-game {
    margin: 50px 50px;
  }
}

@media screen and (max-width: 1400px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, 180px);
    grid-auto-flow: row;
    margin-bottom: 10px;
    text-align: center;
  }

  .game-card {
    width: 180px;
    height: 180px;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    transition: all 300ms;
    border: 3px solid transparent;
  }
}