* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "VT323", monospace;
}

body {
  height: 100vh;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-size: cover;
  background-size: 100% 4px;
  background-color: black;
}

.container {
  height: 100%;
  display: flex;
}

h2 {
  font-family: "Pixelify Sans", sans-serif;
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .5rem;
  color: tomato;
}

p {
  font-size: 2rem;
  max-width: 600px;
  text-align: center;
}

.box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.box svg {
  cursor: pointer;
}


