#about {
    background-image: linear-gradient(to top, #333, black);
    width: 100%;
}

#aboutWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 50px;
    padding: 20px 0px 70px 0px;
}

@media (max-width: 1300px) {
      #aboutWrapper {
        width: 100%;
     }
}

.aboutText {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 70px;
    padding: 0 40px;
}

@media (max-width: 1800px) {
      .aboutText {
        flex-direction: column;
     }
}

.aboutTextDiv {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1300px) {
      .aboutTextDiv {
        width: 80%;
     }
}

.aboutText h2, .aboutText h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3vw, 28px);
    color: rgb(235, 235, 235);
    display: flex;
    align-items: center;
}
  .red-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 185, 79, 0.7);
    border-radius: 50%;
}

.aboutText p {
    font-family: "Assistant", sans-serif;
    font-size: clamp(18px, 3vw, 20px);
    color: rgb(235, 235, 235);
}

#aboutWrapper img {
    width: 500px;
    border-radius: 20px;
}

@media (max-width: 768px) {
      #aboutWrapper img {
        width: 100%;
        border-radius: 0;
     }
}