body, html {
    height: 100dvh;
    margin: 0;
    padding: 0;
  }

body {
    background: linear-gradient(45deg, #ff8fa9, #FFC3A0); /* Gradient from pink to peach */
    overflow: hidden;
  }

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: row;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap;
}
  
  #no-button, #yes-button {
    margin: 0 10px;
    color: white;
    border: none;
    cursor: pointer;
    height: 50px;
    width: 150px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
  }
  
  #no-button {
    background-color: #FF5E5E; /* Red */
  }
  
  #yes-button {
    background-color: #65E07D; /* Green */
  }
  
  #no-button:hover, #yes-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px; /* Increase top margin for better positioning */
    padding: 20px;
    text-align: center;
  }
  
  .banner-gif {
    width: 80%; /* Decrease the width to make it more centered */
    max-width: 400px; /* Add max-width to prevent it from getting too large */
    height: auto;
    margin-top: 40px; /* Increase top margin for better spacing */
  }
  
  .message {
    display: none;
    margin-top: 30px; /* Add margin to space the message from the buttons */
  }
  
  .message h2 {
    font-size: 24px;
    color: #faf6f8; /* Pink */
  }
  
  h1 {
    font-size: 36px; /* Increase font size for heading */
    color: #faf6f8; /* Pink */
  }
  
  .hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: -1; /* Place the hearts behind all other elements */
  }
  
/* Make responsive for mobile */
@media (max-width: 768px) {
  body {
    padding: 0 20px;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}

.message {
  display: none;
}

.banner-gif {
  width: 100%;
  height: auto;
  margin-top: 20px;

  img {
    width: auto;
    height: 250px;
  }
}

/* Path: /js/script.js */