body {
  margin: 0;
  font-family: sans-serif;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}

main {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #555;
}

figure {
  margin: 0;
  width: 300px;ind
  height: 300px;
  display: grid;
  place-items: center;
}

figure img {
  max-width: 100%;
  height: auto;;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  color: #0B5C9E;
}

footer a {
  text-decoration: none;
  color: inherit;
  border-bottom: solid 2px #555;
}
#logosvg {
        filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

/* Media query for larger viewports */
@media (min-width: 1000px) {
  figure img {
    max-width: 60vw;
  }
}
