@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;700&display=swap");

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: fixed;

  font-family: "Rubik", sans-serif;

  overscroll-behavior: none;
  user-select: none;

  --color-primary: #436683;
}

body {
  margin: 0;
  background: white;
}

h1 {
  font-weight: 100;
  font-size: 10rem;
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 0;
}

h2 {
  font-weight: bold;
  font-size: 6rem;
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 0;
}

hr {
  width: 6rem;
  border-bottom: 1px solid var(--color-primary);
  margin: 0 auto;
  opacity: 0.5;
}

.start-section {
  margin: 6rem auto;
}

.start-section a {
  text-decoration: none;
  display: block;
  margin: 0 auto;
  padding: 0.5rem;

  outline: none;
  border: none;

  color: inherit;
  font-size: 5rem;
  font-weight: 100;

  border-radius: 6px;
  text-align: center;

  width: 50%;
}

.start-section hr {
  margin-bottom: 3rem;
}
