.about-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

    border-radius: 2rem;
    padding: 2rem;
    width: 85%;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0.15rem 0.15rem 0.15rem rgba(0, 0, 0, 0.25);
    background: linear-gradient(
        315deg,
        rgba(69, 94, 183, 0.35),
        rgba(56, 121, 195, 0.35)
    );
}

@media (max-width: 1200px) {
    .about-text {
        width: 100%;
    }
}

.about-text > p {
    white-space: normal;
    word-wrap: break-word;
    text-align: justify;
    line-height: 0.8;
    font-size: 32px;
    margin-bottom: 2rem;
    text-shadow: 0.15rem 0.15rem 0.15rem rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

@media (max-width: 850px) {
    .about-text > p {
        font-size: 24px;
        line-height: 0.8;
        margin-bottom: 1rem;
    }
}

.about-subtitle {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 1.5rem;
    text-shadow: 0.15rem 0.15rem 0.15rem rgba(0, 0, 0, 0.5);
    color: whitesmoke;
}

@media (max-width: 650px) {
    .about-subtitle {
        font-size: 32px;
    }
}

.tags-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 1.5rem;
    gap: 0.75rem;
}

.tags-subcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    color: whitesmoke;
    border-radius: 2rem;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-0.1rem);
}