body {
  background: #FFE5D9;
  color: #F4ACB7;
  text-align: center;
}

.main {
  margin-top:100px ;
}

.main p {
  color: #FF74D4;
  font-size: 40px;
}

.main img {
  width: 160px;
}

.buttons {
    margin: 20px;
    width: 286px;
    display: inline-flex;
    gap: 86px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.button-1 {
  background-color: rgb(122, 202, 2);
  width: 100px;
  height: 100px;
  color: white;
}

.button-1:hover {
  background-color: rgb(90, 160, 0); 
  cursor: pointer;
  transform: scale(1.1);
   box-shadow: 0 0 15px rgb(122, 202, 2),
              0 0 30px rgb(122, 202, 2),
              0 0 45px rgb(122, 202, 2);
}



.button-2 {
   background-color: rgb(122, 202, 2);
  width: 100px;
  height: 100px;
  color: rgb(255, 255, 255);
}

.button-2:hover {
    background-color: rgb(90, 160, 0);
  cursor: pointer;
  transform: scale(1.1);
   box-shadow: 0 0 15px rgb(122, 202, 2),
              0 0 30px rgb(122, 202, 2),
              0 0 45px rgb(122, 202, 2);
}



.icon-2 img {
  width: 70px;
  position: absolute;
    left: 30px;
    top: 20px;
}

.photoes {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}



.photo-box {
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.image-1,
.image-2 {
  width: 400px;
}

.p-1,
.p-2 {
  font-size: 23px;
  margin-top: 10px;
}

.p-1 {
  color: #642CA9;
}

.photo-box img {
  transition: 0.4s ease;
  border-radius: 15px;
}

.photo-box img:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.photo-box p {
  transition: 0.3s ease;
}

.photo-box:hover p {
  transform: translateY(5px);
  letter-spacing: 1px;
}

.image-3 {
  width: 400px;
}

.image-4 {
  width: 400px;
}

.p-3 {
  font-size: 23PX;
  color: rgb(44, 105, 44);
}

.p-4 {
  color: rgb(133, 12, 48);
  font-size: 23px;
}

.question-p {
  font-size: 32px;
}

.button-3 {
  width: 100px;
  height: 100px;
  background-color: #CE4257;
  color: white;
  font-size: 20px;
  border: none;
  transition: 0.3s ease;
}

.button-3:hover {
  background-color: #b82f43;
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 
    0 0 15px #CE4257,
    0 0 30px #CE4257,
    0 0 45px #CE4257;
}

.ask-div {
  display: flex;
    flex-direction: column;
}


.ask-div img {
  width: 167px;
 position: relative;
   left: 860px;
   margin-bottom: 20px;
}


.button-4 {
  width: 150px;
  height: 100px;
  background-color: #720026;
  color: white;
  font-size: 20px;
  border: none;
  transition: 0.3s ease;
  margin-top: 30px;
}

.button-4:hover {
  background-color: #57011d;
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 
    0 0 15px #720026,
    0 0 30px #720026,
    0 0 45px #720026;
}

.buttons-2 {
    margin: 20px;
    width: 286px;
    display: inline-flex;
    gap: 86px;
    flex-wrap: nowrap;
    flex-direction: row;
}
.button-5 {
  background-color: #C9ADA1;
  width: 100px;
  height: 100px;
  color: white;
  border: none;
}

.button-6 {
  background-color: #C9ADA1;
  width:100px;
  height: 100px;
  color: white;
  border: none;
}

.button-5:hover {
  background-color: #92776b; 
  cursor: pointer;
  transform: scale(1.1);
    box-shadow: 
    0 0 15px #C9ADA1,
    0 0 30px #C9ADA1,
    0 0 45px #C9ADA1;
}
.button-6:hover {
  background-color: #92776b; 
  cursor: pointer;
  transform: scale(1.1);
    box-shadow: 
    0 0 15px #C9ADA1,
    0 0 30px #C9ADA1,
    0 0 45px #C9ADA1;
}

.final-container {
  text-align: center;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-container img {
  width: 200px;
  margin: 20px 0;
}

.buttons {
  position: relative;
  height: 120px;
  width: 300px;
}

.yes-btn,
.no-btn {
  width: 120px;
  height: 50px;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.yes-btn {
  background-color: #CE4257;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
}

.yes-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #CE4257;
}

.no-btn {
  background-color: gray;
  color: white;
  position: absolute;
  right: 0;
  top: 0;
}

.sus-gif {
  width: 150px;
  margin-top: 20px;
  display: none; /* hidden at start */
}