body {
    margin: 0;
    padding: 0;
    background-color: rgb(3, 3, 34);
    background-image: url('../images/shubham-s-web3-L6q_LdO52wo-unsplash.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}

#container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
    border-radius: 10px;
    background: rgba(36, 36, 36, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
    box-shadow: 0 0 5px 2px rgba(36, 36, 36, 0.6);
}

.info-title {
    color: #72e9f5;
    margin-top: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 40px;
}

.info-description {
    color: rgb(141, 141, 141);
    font-weight: 500;
    font-size: 16px;
}

.info-button {
    background-color: rgb(115, 233, 147);
    border: none;
    width: 100%;
    color: rgb(80, 80, 80);
    font-weight: 700;
    border-radius: 5px;
    padding: 15px 10px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 18px;
}

.info-button:hover {
    background-color: rgba(80, 80, 80, 0.6);
    color: white;
}

.container-img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

@media only screen and (max-width: 768px) {
    #container {
        flex-direction: column;
    }

    .info-title, .info-description {
        text-align: center;
    }
  }


  @-webkit-keyframes side-to-side {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-150%);
              transform: translateX(-150%);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translateX(150%);
              transform: translateX(150%);
    }
  }
  @keyframes side-to-side {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-150%);
              transform: translateX(-150%);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translateX(150%);
              transform: translateX(150%);
    }
  }
  
  .side-to-side:before {
    -webkit-animation: side-to-side 0.5s infinite alternate ease-in-out;
            animation: side-to-side 0.5s infinite alternate ease-in-out;
    background-color: black;
    border-radius: 100%;
    content: '';
    height: 30px;
    width: 30px;
    display: block; /* Ensures the element is a block-level element */
  }