@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Space+Grotesk:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #1c214d;
  color: #ffa6f5;
}

.container {
  max-width: 1200px;
  margin: 64px auto;
  width: 90%;
}

.link {
  color: #fcee90;
}
.link:hover {
  text-shadow: 0 0 13px #fcee90;
}

.header {
  width: 50%;
  min-width: 320px;
}
.header__title {
  font-size: calc(1vw + 24px);
  font-weight: 700;
  line-height: 1.4;
}
.header__description {
  margin: 24px 0;
  font-size: 16px;
  font-family: "Space Grotesk";
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 24px;
}
.grid__item {
  padding: 12px;
  background-color: transparent;
  border: 4px solid #ffa6f5;
}
.grid__item__title {
  font-size: calc(0.8vw + 20px);
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 0;
  text-align: center;
}
.grid__item__list {
  font-family: "Space Grotesk";
}
.grid__item__list__list-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 12px;
  margin: 12px 0;
}
.grid__item__list__list-item__time {
  text-align: right;
}/*# sourceMappingURL=style.css.map */