body {
    cursor: none !important;
}

.btn-resume {
    font-size: 17px;
    background: transparent;
    border: none;
    padding: 5px;
    font-family: 17px;
    color: #000;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
}

.btn-resume::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #000;
    transition: 0.5s ease;
}

.btn-resume:hover {
    color: white;
    transition-delay: 0.5s;
}

.btn-resume:hover::before {
    width: 100%;
}

.btn-resume::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    transition: 0.4s ease;
    z-index: -1;
}

.btn-resume:hover::after {
    height: 100%;
    transition-delay: 0.4s;
    color: black;
}

.about-container {
    padding: 32px 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-card {
    display: flex;
    display: column;
    border-bottom: 1px solid rgb(223, 223, 223);
}

.about-header {
    font-size: 17px;
    /* font-weight: 550; */
}

.about-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bio p {
    max-width: 95vw;
    word-wrap: break-word;
    text-align: start;
    color: rgb(54, 54, 54);
}

.skill {
    max-width: 95vw;
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 40px;
}

.skill-list li {
    display: flex;
    margin-top: 12px;
    margin-right: 12px;
    background-color: rgb(240, 240, 240);
    border-radius: 5px;
}

.skill-list li:hover {
    background-color: rgb(217, 215, 215);
}

.skill-list a {
    font-size: 12px;
    text-decoration: none;
    color: black;
    border-radius: 5px;
    padding: 5px 5px;
}

.skill-list a:hover {
    color: black;
}

.about-content-sidebar {
    display: flex;
    flex-direction: column;
}

#info {
    padding: 24px;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgb(54, 54, 54);
    background-color: rgb(250, 250, 251);
    border-radius: 5px;
}

#info p:last-child {
    margin: 0;
}

#info i {
    margin-right: 8px;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

#social-links {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

#social-links li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

#social-links i,
#social-links a {
    line-height: 1;
    vertical-align: middle;
}

#social-links i {
    font-size: 20px;
    margin-right: 15px;
    width: 21px;
}

#social-links a {
    text-transform: capitalize;
    font-size: 14px;
    text-align: center;
    color: rgb(54, 54, 54);
    text-decoration: none !important;
}

#social-links a:hover {
    color: rgb(121, 121, 121);
}

@media (max-width: 767px) {
    .tags-container {
        justify-content: center;
        text-align: center;
    }
}

/* Tablet view */
@media (min-width: 768px) {
    .about-container {
        padding: 48px 32px;
    }

    .about-content {
        flex-direction: row;
    }

    .about-content-main {
        margin-right: 48px;
    }

    .bio p {
        max-width: 50vw;
        word-wrap: break-word;
        text-align: start;
        color: rgb(54, 54, 54);
    }

    .skill {
        width: 50vw;
    }

    .skill-list {
        max-width: 50vw;
    }
}

/* Desktop view */
@media (min-width: 1118px) {
    button {
        cursor: none !important;
    }

    a:hover {
        cursor: none !important;
    }

    .cursor-dot {
        width: 5px;
        height: 5px;
        background-color: #000;
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.2s;
        transform: translate(-50%, -50%);
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 2px solid #000;
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transition: transform 0.15s;
        transform: translate(-50%, -50%);
    }

    .cursor-dot.hovered {
        transform: scale(2);
        background-color: black;
    }

    .cursor-outline.hovered {
        transform: scale(1.5);
        border: 2px solid black;
    }

    .about-container {
        padding: 48px 72px;
        margin: 0px 183px;
    }

    .about-content {
        flex-direction: row;
    }

    .about-content-main {
        margin-right: 48px;
    }

    .bio p {
        max-width: 612px;
        word-wrap: break-word;
        text-align: start;
        color: rgb(54, 54, 54);
    }

    .skill {
        width: 612px;
    }

    .skill-list {
        max-width: 612px;
    }
}