body {
    text-align: center;
    background-color: #1e1e1e;
}

h1 {
    color: #FFF8E7;
    font-family: 'Arial', sans-serif;
    margin-top: 50px;
}

p {
    color: #FFF8E7;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    margin: 0 auto;
    width: 60%;
}

#button-background {
    display: inline-block;
    background-color: #FFF8E7;
    border-radius: 5px;
    margin-top: 30px;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    background-color: #c0392b;
    opacity: 0.6;
    color: #f5f0e8;
    border: none;
    border-radius: 5px;
}

button:hover {
    cursor: pointer;
}

#button-background:hover {
    cursor: pointer;
}

#confirmation {
    color: #f5f0e8;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    margin-top: 20px;
}


#envelope {
    position: relative;
    width: 500px;
    height: 300px;
    background-color: #F5E6C8;
    margin: 20px auto;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#return-address {
    position: absolute;
    top: 10px;
    left: 35px;
    width: 250px;
}

#mailing-address {
    position: absolute;
    right: 10px;
    bottom: 100px;
    width: 300px;
    height: 100px;
}

#return-address p {
    font-size: 18px;
    font-family: 'Caveat', cursive;
    left: 10px;
    top: 10px;
    text-align: left;
    color: #333;
    margin: 0;
}

#mailing-address p {
    font-size: 25px;
    font-family: 'Caveat', cursive;
    text-align: left;
    color: #333;
    margin: 0;
}

#stamp {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 75px;
  background-color: #c0392b;
  opacity: 0.6;
  border: 4px solid #f5f0e8;
  outline: 2px dashed #f5f0e8;
  transform: rotate(-7deg);
}

#envelope:hover {
    transform: scale(1.05);
    cursor: pointer;
}


#letter {
  position: relative;
  width: 500px;
  height: 650px; /* 2.5x the envelope's 300px - adjust to your liking */
  background-color: #FFF8E7;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  border-radius: 3px;
}

#letter p {
  color: #000000 !important;
  font-family: 'Caveat', cursive;
  font-size: 21px;
}

#content {
    text-align: left;
    position: absolute;
    top: 70px;
    right: 25px;
    width: 90%;
}