.about {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-timing-function: ease-in;
    animation: slide-fade .5s ease-out 1.5s forwards;
    opacity: 0;
  }
  
  .about h2 {
    padding-top: 10px;
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    color: white;
    margin: 0;
    padding-left: 20px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  }
  
  .paragraph {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy, sans-serif;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  }
  
  .paragraph p {
    font-size: 30px;
    color: #ffffff;
    width: 50%;
    padding: 30px;
    text-indent: 50px;
    background-color: #7e0062;
    border: 8px solid white;
    border-radius: 50px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
  }

  .paragraph p::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 100%;
    right: -25%;
    bottom: 0;
    transform: skew(-45deg);
    transform-origin: bottom right;
    background-color: #ff6600;
    z-index: -1;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  }

  .leftParagraph {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy, sans-serif;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);

    margin-bottom: 200px;
  }

  .floatButton-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .floatButton {
    padding: 20px 30px;
    margin: 0 10px;
    display: inline-block;
    position: relative;
    animation: float 5s ease-in-out infinite;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .floatButton:hover {
    transform: scale(1.05);
  }

  .footer {
    position: relative;
    width: 100%;
    height: 50px;
  }
  
  .rectangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: black;
  }
  
  @media (max-height: 600px) {
    .rectangle {
      display: none;
    }
  }
  
  @keyframes float {
    0% {
      transform: translate(0, -10px) rotate(-5deg);
    }
    25% {
      transform: translate(0, 0px) rotate(5deg);
    }
    50% {
      transform: translate(0, 10px) rotate(-5deg);
    }

    75% {
      transform: translate(0, 0px) rotate(5deg);
    }
    100% {
      transform: translate(0, -10px) rotate(-5deg);
    }
  }

  @keyframes slide-fade {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }