body {
  text-align: center;
  cursor: url("dogpaw.png"), auto; /* Example: Use a custom image as cursor */
  margin: 0px 0px 40px 0px;
  background-color: #f3bc77;
  background-image: linear-gradient(
    90deg,
    transparent 50%,
    rgba(255, 255, 255, 0.5) 50%
  );
  background-size: 60px 60px;
}

header {
  background-color: #402a23;
  height: 160px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.petIcon {
  border-radius: 150px;
  max-width: 200px;
  height: 130px;
  transform: translate(-20px, 2%);
  float: left;
  margin-right: 20px;
}

h1 {
  font-family: "Ribeye", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  line-height: 1.5;
  text-align: left;
  float: right;
  max-width: 600px;
}

main {
  margin: 90px auto 30px;
  max-width: 600px;
}

.form-container {
  margin-bottom: 35px;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #402a23;
  box-shadow: 0px 10px 30px#402a23;
}

.instructions {
  padding: 10px;
  border: 1px solid #402a23;
  border-radius: 20px;
  width: 70%;
  line-height: 20px;
  font-family: "Unkempt", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.submitButton {
  padding: 10px;
  border: none;
  background: #f3bc77;
  border-radius: 20px;
  line-height: 20px;
  font-family: "Unkempt", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  width: 110px;
  box-shadow: 8px 3px 3px black;
}

.submitButton:hover {
  color: white;
  cursor: url("dogpaw.png"), auto; /* Example: Use a custom image as cursor */
  border: 2px solid white;
}

.hint {
  color: white;
  line-height: 1.5;
  margin-top: 5px;
  text-align: left;
}

/* Hides the form until button is clicked and shows results */
.hidden {
  display: none;
}

.poem {
  padding: 30px;
  border-radius: 5px;
  font-family: "Unkempt", cursive;
  font-weight: 400;
  font-style: normal;
  background-color: rgb(165, 82, 51, 0.85);
  box-shadow: 0px 20px 50px#402a23;
  border-left: 3px solid black;
  font-size: 23px;
  text-align: left;
}

button {
  margin-bottom: 20px;
  padding: 9px;
  border: none;
  background: #5b252d;
  border-radius: 15px;
  line-height: 20px;
  font-family: "Unkempt", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  width: 120px;
  box-shadow: 6px 3px 3px black;
  color: white;
}

button:hover {
  border: 2px solid white;
  opacity: 0.9;
}

.email-button {
  width: 230px;
  cursor: url("dogpaw.png"), auto; /* Example: Use a custom image as cursor */
}

footer {
  font-size: 13px;
}

a {
  color: #a55233;
}
