@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, .grid-container {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  font-weight: 300;
  color: #333333;
  background-color: #000000;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  color: #333333;
}

#wrapper {
  max-width: 900px;
  min-height: 250px;
  height: 100vh;
  margin: 20px auto;
}

p {
  padding-top: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  grid-template-areas: 
    "header"
    "body"
    "footer";
}

.header {
  grid-area: header;
  text-align: center;
  //background-color: aqua;
}

.header img {
  padding: 50px 0 50px;
}

.body {
  grid-area: body;
  padding-top: 20px;
  text-align: center;
  //background-color: yellow;
}

.footer {
  grid-area: footer;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  //background-color: red;
  height: auto;
}

.footer img {
  width: 100%;
  height: auto;
  max-width: 431px;
  max-height: 579px;
  object-fit: contain;
}

.footer p {
  letter-spacing: 1px;
  color: #FFFFFF;
}

h1 {
  font-size: 7vw;
  line-height: 8vw;
  font-weight: 700;
  color: #FFFFFF;
}

h2 {
  font-size: 5vw;
  line-height: 6vw;
  font-weight: 400;
  margin-top: 20px;
}

@media (max-width: 400px) {
  h1 {
    font-size: 42px; /* Sets the font size to 32px when the viewport width is 400px or less */
    line-height: normal; /* Adjusts the line height to a normal value for smaller screens */
  }
}
