:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
  
    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
  }
  
  
  body {
    margin: 0;
    place-items: center;
    width: 100%;
    height: 100%;
    background-color:black;
  }
  
  h1 {
    font-size: 3.2em;
    line-height: 1.1;
    text-align: center;
    margin-top: 20%;
  }
  
  button {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.6em 1.2em;
    font-size: 1em;
    margin-left: 45%;
    font-weight: 500;
    font-family: inherit;
    background-color:white;
    cursor: pointer;
    transition: border-color 0.25s;
  }
  button:hover {
    border-color: #FF004F;
    background-color: #FF004F;
    box-shadow: 0px 0px 25px #FF004F;
  }
  button:focus,
  button:focus-visible {
    outline: 4px auto -webkit-focus-ring-color;
  }
  
  