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

body {
  background: Lavender;
  color: Indigo;
  font-family: Inter;
  margin: 80px;
}

h1,
p {
  font-size: 60px;
  font-weight: normal;
}

a {
  color: DeepPink;
}

a:hover {
  opacity: 0.5;
}

@media (max-width: 600px) {
  body {
    margin: 20px;
  }

  h1,
  p {
    font-size: 40px;
  }
}
