:root {
  --proformer: #1f2228;
}

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

body {
  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;
}

.frame-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.5em 0.5rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


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


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


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

.expand {
  border: none;
  background: #1f2228;
}

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

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

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

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

.aboutblank {
  background: #1f2228;
  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: #1f2228;
  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: #1f2228;
  border-radius: 10px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 300ms;
  font-size: 16px;
}

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

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

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

}

@media screen and (max-width: 800px) {
  .frame-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;
  }
}