@import url("https://fonts.googleapis.com/css2?family=Inter&family=Inter+Tight:wght@400;500;600&display=swap");

body {
  background-color: #f7f7f7;
}

* {
  font-family: "Inter Tight", sans-serif;
}

.main-wrapper {
  min-height: 100vh;
  width: 100%;
  padding: 15px;
}

.title {
  margin-top: 100px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #808080;
}

.subtitle {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.56px;
}

.container {
  max-width: 688px;
  margin: 96px auto 180px auto;
}

.link-wrapper {
  flex: 1 1;
  border-bottom: 1px solid #e6e6e6;
}

.link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: #000000;
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.16px;
  line-height: 30px;
}

.arrow {
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 24px;
}

/* MEDIA------------------------- */

@media (max-width: 743px) {
  .link {
    font-size: 20px;
    line-height: 24px;
    padding: 16px 0;
  }

  .subtitle {
    font-size: 28px;
    letter-spacing: -0.16px;
    line-height: 32px;
  }

  .title {
    margin-top: 50px;
  }

  .container {
    margin: 40px auto 100px auto;
  }
}
