/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #8ca9ca; /* Darker blue color */
    overflow: hidden;
  }
  
  .header {
    background-color: #17202A;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .article {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .blobs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .blob {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: moveBlob1 5s infinite alternate;
  }

  .blob-vsmall {
    width: 10px;
    height: 10px;
    animation: moveBlob1 10s infinite alternate;
  }
  
  .blob-vlarge {
    width: 50px;
    height: 50px;
    animation: moveBlob2 4s infinite alternate;
  }

  .blob-small {
    width: 20px;
    height: 20px;
    animation: moveBlob2 8s infinite alternate;
  }
  
  .blob-large {
    width: 40px;
    height: 40px;
    animation: moveBlob3 6s infinite alternate;
  }
  
  @keyframes moveBlob1 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(10px, 750px);
    }
  }
  @keyframes moveBlob2 {
    0% {
      transform: translate(50, 50);
    }
    100% {
      transform: translate(50px, 750px);
    }
  }
  @keyframes moveBlob3 {
    0% {
      transform: translate(75, 50);
    }
    100% {
      transform: translate(75px, 750px);
    }
  }
  
  .custom-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  