body {
  background-color: #000;
  color: rgb(180, 180, 180);
  font-family: 'futura';
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 50px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: rgb(255, 51, 51);
}

h2 {
  font-size: 28px;
  margin-bottom: 0px;
  color: rgb(255, 255, 255);
}

h3 {
  font-size: 20px;
  margin-bottom: 0px;
  color: rgb(90, 90, 90);
}

p {
  font-size: 22px;
  line-height: 1.5;
}

a:visited {
  color: rgb(90, 90, 90);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: rgb(255, 51, 51);
  background-color: transparent;
  text-decoration: underline;
}

span {
  content: "\21E3";
}

button {
  display: block;
  margin: 0px auto;
  padding: 0px;
  font-size: 50px;
  cursor: pointer;
  background-color: #000000;
  /* Button background color */
  color: rgb(255, 255, 255);
  /* Text color */
  border: none;
  /* Removed border */
  outline: none;
  /* Removed outline */
  transition: background-color 0.3s;
  /* Adding a smooth transition to the background color */
}

button:hover {
  background-color: #FF3333;
  /* Change background color on hover */
}