* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: purple;
  color: aliceblue;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

h1 {
  font-size: 60px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
  font-family: monospace;
}

h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

span {
  color: black;
  font-size: 33px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
span a {
  text-decoration: none;
  color: yellow;
}

span a:hover {
  color: yellowgreen;
}
