body {
    display: flex;
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background: radial-gradient(circle, #2C3954, #112550, #080e1b);
    height: 100vh;
    justify-content: center;
    align-items: center;
   
}

.bubble1 {
    margin: auto;
    margin-top: auto;
    display: flex;
    border: 10px solid transparent; /* Create space for the border */
    border-radius: 5px;
    text-align: center;
    width: 800px;
    height: 800px;
    flex-direction: column;
    padding: 3px;
    background-color: #112550;
    position: relative; /* Needed to apply border-image properly */
    font-size: 2rem;
  }
  
  .bubble1::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: inherit;
    background: linear-gradient(90deg, purple, royalblue, cyan, black);
    background-size: 300% 300%; /* Expand the gradient to animate it */
    animation: moveBorder 5s linear infinite;
    animation-direction: alternate;
    z-index: -1; /* Ensures the border stays behind the content */
  }
  
  @keyframes moveBorder {
    0% {
      background-position: 0% 50%; /* Start the gradient at the left */
    }
    100% {
      background-position: 100% 50%; /* Move the gradient to the right */
    }
  }


  .bubble1-text {
    color: wheat;
  }
  .return-button {
    position: relative;
    color: black;
    background-color: aliceblue;
    border: 5px;
    border-radius: 12px;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    align-items: center;
    width: 20%;
    left: 50%;
    transform: translate(-50%, -150%);
    

}

.return-button::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 12px;
  background: linear-gradient(90deg, purple, royalblue, black);
  background-size: 300% 300%; /* Expand the gradient to animate it */
  animation: moveBorder 5s linear infinite;
  animation-direction: alternate;
  z-index: -1;

}







  
@media (max-width: 768px) {
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    font-size: 0.9rem;
    height: 100vh;
    width: 100vw;
    background-color: #080e1b;
  }
  .bubble1 {
    width: 300px;
    height: 400px;
    font-size: 1rem;
  }
}