* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgba(232, 213, 216, 0.3);
  background-image: url(paw-bg.jpg);
  background-size: contain;
  background-blend-mode: darken;
  
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Nata Sans", sans-serif;
}

h1 {
  color: red;
  font-size: 4rem;
  margin-bottom: 0.2em;
 background-color: rgb(248, 234, 236,0.6);
}

p {
  color: gray;
  font-size: 1.2rem;
}
.subheading {
  background-color: rgb(248, 234, 236,0.6);
}

.dog-facts-container {
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  width: 600px;
  height: 200px;
  padding: 2em;
  margin: 4em 0 2em 0;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgb(222, 147, 147);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}

button {
  background-color: red;
  color: white;
  border-radius: 9999px;
  padding: 0.5em 1.5em;
  font-size: 1.2rem;
  border: none;
  transition: transform 0.3s ease;
}

button:hover {
  background-color: rgb(237, 59, 118);
  transform: scale(1.1);
}

