/* Reset some default styles */
body,
h1,
p,
footer {
  margin: 0;
  padding: 0;
}

a {
  color: #fff;
}

body {
  font-family: 'Outfit', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: sans-serif;
  text-align: center;
  color: #fff;
  background-color: #8670d6;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo {
  width: 800px;
  max-width: 80%;
  height: auto;
  margin-bottom: 2rem;
}

.pets {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  width: 800px;
  max-width: 80%;
  margin: 2rem 0;
  gap: 1rem;
}

.pets img {
  image-rendering: pixelated;
  flex: 1 1 auto;
  max-width: 100%;
  height: auto;
}

.blurb {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.fine-print {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  background-color: #483ebe;
  padding: 1rem;
}

@media (max-width: 600px) {
  .fine-print {
    font-size: 0.6rem;
  }
}
