@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

.fira-code {
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body 
{
    background-color: black;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vmin;

    width: 100vw;
    height: 100vh;

    border: none;
    margin: 0;
    padding: 0;

    font-family: "Fira Code", monospace;
    font-size: 7vmin;
}

footer
{
    color: grey;
    font-size: 2vmin;
}