section.about {
    padding-top: 100px;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px 0;
}

.image__content.about {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    z-index: 1;
}

.image__content.about::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    z-index: 0;
    animation: rotateHeroImage 8s linear infinite;
    /* filter: blur(3px); */
    opacity: 0.8;
}

@keyframes rotateHeroImage {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.image__content.about img {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 6px solid var(--card-bg);
    display: block;
    margin: 0 auto;
}

.desc__about {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.desc__about h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--text-color);
    max-width: 600px;
}

.desc__about h1 span {
    color: var(--accent-color);
}

.desc__about.subtitle {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

@media screen and (max-width: 992px) {
    .about__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image__content.about {
        width: 250px;
        height: 250px;
    }

    .image__content.about img {
        width: 230px;
        height: 230px;
    }

    .desc__about {
        max-width: 700px;
    }

    .desc__about h1 {
        font-size: 2rem;
        text-align: center;
    }

    .about__content .btn {
        display: block;
        margin: 0 auto;
    }
}