@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600;800&display=swap");
body,
html {
  margin: 0;
  padding: 0;
}

::selection {
  color: #fefefe;
  background: #111111;
}

* {
  font-family: "Open Sans", sans-serif;
  color: #111111;
  background: #fefefe;
}

h1 {
  margin: 1rem;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  font-size: 10rem;
  background: #111111;
  color: #fefefe;
  display: inline-block;
}

h2 {
  margin: 0.5rem;
  font-weight: 600;
  font-size: 2.5rem;
}

p {
  margin: 0.25rem;
  font-weight: 300;
  font-size: 1.5rem;
}

a {
  color: #111111;
  font-weight: 600;
}

#content {
  width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}