@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url("reset.css");

body
{
  background: linear-gradient(180deg, rgb(0 170 255) 0%, rgb(0 3 73) 100%);
  /* background: rgb(28, 27, 34); */
  font-family: 'Poppins', sans-serif;
  padding: 8px;
  overflow: hidden;
  display: flex; /* Enables Flexbox for the body */
  flex-direction: column; /* Stacks elements vertically */
  width: 100%;
}

h1
{
  font-size: 2em;

  span.unofficial
  {
    font-style: italic;
    color: rgb(192, 0, 0);
    font-size: 0.7em;
  }
}

p
{
  color: black;
  max-width: 800px;
}

