/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Oswald:wght@200..700&display=swap');

body {
  background-color: black;
  color: white;
  font-family: Helvetica, Arial, sans-serif; 
}
p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
p {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
h1 {
  font-family: "Limelight", sans-serif;
  font-weight: 700;
  font-style: normal;
}
div.redbox {
  border: 10px pink solid;
}
.layout {
  width: 100%;

  display: grid;
  grid-template-rows: repeat(4, 10fr);
  gap: 1px 1px;
  grid-auto-flow: column dense;

  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
}


