body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
  }

  .message-box {
    box-shadow: 0 0 10px rgba(179, 179, 179, 0.5);
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(14, 80, 119, 0.205);
    border: rgba(160, 201, 235, 0.5) 4px solid;
    backdrop-filter: blur(15px);
    text-align: center;
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: gradient 1s ease infinite;
  }

  h2,
  p {
    font-family: 'Roboto', sans-serif;
    color: white;
  }

  img {
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }

  video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }