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

body {
  width: 100%;
  height: 100%;
  font-family: "Aeonik";
  background-color: #1a2ffb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  z-index: 2;
}

.header p {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.5em;
}

.header h1 {
  color: #fff;
  text-align: center;
  font-size: 7.5vw;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0.75em;
}

button {
  border: none;
  outline: none;
  padding: 1.5em 3em;
  text-transform: uppercase;
  font-weight: 500;
  background-color: #fff;
  border-radius: 2em;
}
