@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

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

html,
body {
  height: 100%;
  font-family: "Bebas Neue", cursive;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

section {
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #333;
}

span {
  font-size: 1.5rem;
  color: #666;
}

p {
  margin-top: 2rem;
}

a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

a:hover {
  background-color: #333;
  color: #f5f5f5;
}
