* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #09090a;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

header {
  background-color: #121214;
  border-bottom: 1px solid #29292e;
}

header h1 {
  width: 100%;
  text-align: center;
  padding: 40px;
  font-size: 6rem;
  color: transparent;
  background-color: #6e72fc;
  background-image: linear-gradient(315deg, #6e72fc 0%, #ad1deb 74%);
  background-clip: text;
}

main {
  font-size: 1.6rem;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px;
}

main div {
  border: 1px solid #29292e;
  border-radius: 10px;
  padding: 20px;
  background-color: #121214;
  min-height: 450px;
  max-width: 900px;
  align-items: center;
  justify-items: center;
}

main div h2 {
  border-bottom: 1px solid #29292e;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

ul {
  list-style: none;
}

li::before {
  content: "➜ ";
}

@media (max-width: 1310px) {
  main {
    grid-template-columns: 1fr;
  }
}
