body {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('./assets/bg.png');
    background-repeat: repeat;
  }
  
  h1 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 48px;
    color: #ffffff;
  }
  
  h2 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 36px;
    color: #ffffff;
  }
  
  h3 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 24px;
    color: #ffffff;
  }
  
  p {
    font-size: 18px;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
  }
  
  .project-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    color: #ffffff;
  }
  
  .project-list li {
    margin: 0 10px;
    color: #ffffff;
  }
  
  .socials-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    color: #ffffff;
  }
  
  .socials-list li {
    margin: 0 10px;
    color: #ffffff;
  }

  .footer {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    color: #ffffff;
  }

  .space-whales {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .space-whales .space-whales-gif {
    display: block;
    width: 50px; /* Adjust the width as needed */
    animation: float 20s linear infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateX(-100vw);
    }
    100% {
      transform: translateX(100vw);
    }
  }