main {
  max-width: 2000vw;
  flex: 1;
}

.container {
  display: block;
}

.square {
  /* width: 20vw; */
  width: 550px;
  height: 550px;
  /* aspect-ratio: 1 / 1; */
  /* max-width: 400px; */
  justify-self: center;
  background-color: rgb(247, 247, 230, 0);
  border: 30px solid #262626;
  align-content: center;
}

.area {
  padding: 15px;
}

.texto {
  color: rgb(38, 38, 38);
  font-family: "Courier New", Courier, monospace;
}

.section-title {
  width: 100%;
  text-align: center;
  color: rgb(38, 38, 38);
  font-size: 2rem;
  font-family: "Gill Sans", sans-serif;
}

.cursor {
  color: rgb(38, 38, 38);
  font-family: "Courier New", Courier, monospace;
  animation: blink;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.parent {
  background-color: rgb(247, 247, 245);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0% 0% 0 0%;
  justify-content: space-between;
  align-items: center;
  overflow: scroll;
}

.parent_two {
  background-color: rgb(247, 247, 247);
  display: grid;
  align-items: center;
}

.defaultbg {
  background-color: rgb(247, 247, 247);
}

.bg {
  background-color: rgb(247, 247, 247);
  position: absolute;
  width: 50px;
  margin-left: -10px;
  margin-top: -10px;
}

.sq {
  background-color: #262626;
  top: 10%;
  left: 10%;
  width: 50%;
  height: 100%;
  margin-left: -10px;
  margin-top: -10px;
}

.wrap {
  width: 40vw;
  white-space: nowrap;
}

.network {
  justify-content: center;
  padding-top: 3%;
  padding-left: 5%;
  padding-right: 5%;
}

.support {
  padding-top: 3%;
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 5%;
}

.svg-icon {
  width: 30px;
}

.link-space {
  display: block;
  background-color: beige;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.content {
  height: 100%;
  min-height: 200px;
}

.videogames {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.itchio-link {
  text-align: center;
  padding: 1%;
  flex: 0 0 50%;
}

.link-td {
  padding: 1%;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #aaa;
  background-color: #262626;
  position: relative;
  bottom: 0;
}

.seo-description {
  visibility: hidden;
  font-size: 0rem;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  main {
    align-items: center;
  }
  .square {
    justify-self: center;
    border: 20px solid #262626;
    max-width: 250px;
    max-height: 100px;
  }

  .texto {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.5rem;

  }

  .wrap {
    min-width: 50vw;
  }

  .videogames {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .itchio-link {
    flex: 1 0 auto;
    width: 100%;
    padding: 0.5rem;
  }

  .svg-icon {
    width: 35px;
  }

  .link-td {
    padding: 0.5rem;
  }

  .seo-description {
    display: none !important;
  }
}
