body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("ai_background.png") repeat-x;
    background-size: 100% auto;
    animation: backgroundAnimation 15s linear infinite;
}
@keyframes aboutAnimation {
    0% {
      opacity: 0;
      transform: translateY(50px) scale(0.5);
      background-color: #f8f8f8;
    }
    50% {
      opacity: 1;
      transform: translateY(0) scale(1);
      background-color: #eaeaea;
    }
    100% {
      opacity: 0;
      transform: translateY(-50px) scale(0.5);
      background-color: #f8f8f8;
    }
  }
  
  /* Apply the aboutAnimation to the about section container */
  .about-container {
    width: 300px;
    height: 200px;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    position: relative;
    animation: aboutAnimation 5s ease-in-out infinite; /* Adjust the animation duration as needed */
  }

@keyframes backgroundAnimation {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 0 0;
    }
}

.content-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(50%);
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
