@font-face {
  font-family: Vollkorn;
  src: url("./fonts/Vollkorn-Regular.ttf");
}
@font-face {
  font-family: Oswald;
  src: url("./fonts/Oswald.ttf");
}
body {
  background-image: url("./img/bg.png");
  background-size: 240px;
  color: white;
  overflow-y: scroll;
  padding-bottom: 100px;
  font-family: Oswald;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}
.header h1 {
  font-size: 48px;
  font-weight: 0;
  margin: 0;
  color: white;
  margin-bottom: 5px;
  text-align: center;
}
.header .description {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ece0ff;
}

.card {
  margin: 5px;
  border-radius: 20px;
  max-width: 800px;
  background: linear-gradient(0deg, #a82b78 0%, #5f33ee 100%);
  padding: 10px;
}

.card .chapters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-bottom: 40px;
}

.card .chapters .chapter {
  margin: 0;
  padding: 0;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 220px;
}
.card .chapters .chapter img {
  width: 100%;
}
.card .chapters .chapter a {
  color: gold;
  text-decoration: underline;
}
.card .chapters .chapter .textLine {
  height: 20px;
}
.header-img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
}
.links {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
}
.links div {
  min-width: 160px;
}
.links a {
  display: block;
  color: #fbf;
  font-size: 30px;
  transition: 0.1s ease;
  padding: 5px 10px;
  padding-top: 2px;
  padding-bottom: 5px;
  border-radius: 10px;
}
.links a:hover {
  background: rgba(255, 129, 255, 0.389);
  color: white;
}
.links .links-subtitle {
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 5px;
  margin-left: 10px;
}
.links .links-subtitle:first-child {
  margin-top: 0;
}
.readmore {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 10px;
  font-size: 20px;
}
.readmore a {
  color: white;
}
.info {
  padding: 20px;
  font-family: Volkorn;
}
.info h2 {
  font-family: Oswald;
  font-size: 28px;
  margin-bottom: 10px;
}
.info p {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: justify;
}

.game_link {
  text-decoration: none;
}

.download_zip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: Oswald;
  border: 1px solid white;
  padding: 8px;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
  color: white;
}

.download_zip:hover {
  background-color: #fff7;
}

.download_zip .title {
  font-size: 20px;
}

.download_zip .size {
  font-size: 16px;
}

.screens {
  text-align: center;
}

.screen_all {
  width: 100%;
}
.screen_mini {
  width: 49%;
}
