@font-face {
  font-family: 'UxumGrotesque';
  src: url('./font/UxumGrotesque-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'UxumGrotesque';
  src: url('./font/UxumGrotesque-Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

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

section {
  font-family: 'UxumGrotesque';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #e8ff00;
  text-align: center;
  padding: 2rem;
}
section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
section h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
section > a {
  text-decoration: none;
  color: #000;
}
