html {
    font-family: sans-serif;
    width: 100%;
    height: 100%;
}

body {
    background-color: black;
    color: black;
    width: 100%;
    height: 100%;
    margin: 0;
}

@media (prefers-color-scheme: light) {
  body {
    background-color: white;
    color: grey;
  }
}


p {
    color: grey;
    height: 80%;
    font-size: clamp(16px, 5vw, 30px);
}


div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}
iframe {
    border: none;

}
