#about {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .wrapper {
    width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

#about .img img {
    opacity: 0;
    animation: loadReveal 1s 0.25s forwards;
    width: 400px;
    border-radius: 8px;
}

#about .wrapper .content {
    opacity: 0;
    animation: loadReveal 1s 0.5s forwards;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#about .content .title h2{
    line-height: 40px;
}

#about .content p {
    width: 720px;
}