#page {
    display: flex;
    background-color: black;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}
.site-nav {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    color: white;
    font-family: 'Roboto Mono', monospace;
    text-decoration: none;
    border-bottom: 1px solid #ed1ef4;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.site-nav:hover,
.site-nav:focus-visible {
    opacity: 1;
}
#text {
    color: white;
    font-size: 9vw;
}
p {
  font-family: 'Roboto Mono', monospace;
}
button {
    background-color: #ed1ef4;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    font-size: 2rem;
    margin: 4px 2px;
    opacity: 0.7;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: black solid 2px;
    outline: #ed1ef4 solid 1px;
    font-family: 'Roboto Mono', monospace;
  }

  button:hover {opacity: 1}

  #score {
    color: white;
    font-size: 5vw;
  }
