:root {
  --primary-gold: #f7ed94;
  --footer-height: 70px;
}

html {
  background: linear-gradient(#712f3d, #9e354b);
  color: var(--primary-gold);
  min-height: 100vh;
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

.content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  min-height: calc(100vh - var(--footer-height));
}

.three-column {
  display: none;
  flex-direction: row;

  .left-column {
    justify-content: space-around;
  }

  .right-column {
    justify-content: center;
  }
}

.two-column {
  display: none;

  .column {
    justify-content: space-around;
  }
}

.column {
  display: flex;
  flex-direction: column;
  padding: 12px;
  width: 400px;
}

.card {
  background: rgba(0 0 0 / 20%);
  border-radius: 16px;
  padding: 12px;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 8px;
}

.card-desc {
  font-size: 18px;
}

.screenshot-wrapper {
  overflow: hidden;
}

.screenshot {
  border-radius: 32px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
    rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
}

.availability {
  font-size: 28px;
  font-weight: 700;
  padding: 120px 0;
}

.footer {
  background: #353131;
  display: flex;
  justify-content: center;
  padding: 18px;
  height: var(--footer-height);
}

.discord-logo {
  fill: #fff;
  height: 30px;
}

.discord-logo:hover {
  fill: var(--primary-gold);
}

@media (1440px <= width) {
  .screenshot {
    width: 600px;
  }

  .three-column {
    display: flex;
  }
}

@media (1000px <= width < 1440px) {
  .screenshot {
    width: 500px;
  }

  .two-column {
    display: flex;
  }
}

@media (width <= 1000px) {
  .screenshot {
    width: 300px;
  }

  .two-column {
    display: flex;
  }
}

@media (width <= 750px) {
  .column {
    width: 100%;
  }

  .card-title {
    font-size: 22px;
  }

  .card-desc {
    font-size: 18px;
  }

  .screenshot-wrapper {
    overflow: hidden;
    width: 50vw;
  }
}
