#index-about-me {
    scroll-margin-top: 4rem;
}
.hero {
    height: 100dvh;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.hero-avatar {
    width: clamp(7.5rem, 6vw, 15rem);
    border-radius: 50%;
    box-shadow: 5px 5px 35px #68c6ff;
}
.hero-name {
    font-size: clamp(2.5rem, 3vw, 10rem);
    font-weight: bold;
    line-height: 0;
    text-shadow: 2px 2px 15px #f0f8ff;
    margin-top: 1.25rem;
}
.hero-tagline-1 {
    font-size: clamp(1.5rem, 3vw, 6rem);
    line-height: 1;
    text-shadow: 2px 2px 10px #f0f8ff;
    margin-bottom: 0.5rem;
}
.hero-tagline-2 {
    font-size: clamp(1.25rem, 3vw, 5rem);
    line-height: 1;
    text-shadow: 2px 2px 20px #ffffff;
}
.hero button {
    font-family: inherit;
    font-size: clamp(1.25rem, 3vw, 5rem);
    background: #d2f3ff9f;
    color: #ffffff;
    border: 2px solid #c2d9ff;
    border-radius: 0.6rem;
    background-size: fixed;
    box-shadow: 0 0 5px #ffffff;
    margin: 0.75rem 0.25rem;
}
.skill-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.25rem 0;
}
.skill-name {
    width: 4.25rem;
}
.skill-fill {
    width: 0rem;
    height: 1.5rem;
    position: relative;
    border-radius: 0.2rem;
    background: #c2d9ff;
    transition: width 0.1s linear;
}
.skill-percent {
    position: absolute;
    right: -2.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}
.card-index-project {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6.625rem;
    margin-top: 0.5rem;
}
.card-project {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 70%;
    height: 100%;
}
.card-project-image {
    box-shadow: 0 0 5px white;
    border: 1px solid white;
    position: absolute;
    width: 80%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.card-project-image.active {
    width: 80%;
    height: 100%;
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
}
.card-project-image.prev {
    width: 75%;
    height: 75%;
    opacity: 0.75;
    transform: translateX(-20%) scale(1);
    z-index: 9;
}
.card-project-image.next {
    width: 75%;
    height: 75%;
    opacity: 0.75;
    transform: translateX(20%) scale(1);
    z-index: 9;
}
.card-project-image.hidden {
    opacity: 0;
    width: 75%;
    height: 75%;
    transform: translateX(0) scale(0.6);
    z-index: 5;
}
.card-project-icon {
    fill: white;
}
.button-left {
    padding: 0 0;
    margin-right: 0.75rem;
    background: #51677860;
    backdrop-filter: blur(5px);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid white;
    box-shadow: 0 0 5px white;
    touch-action: manipulation;
}
.button-right {
    padding: 0 0;
    margin-left: 0.75rem;
    background: #51677860;
    backdrop-filter: blur(5px);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid white;
    box-shadow: 0 0 5px white;
    touch-action: manipulation;
}
.button-pos {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 1rem 0;
}
.button-pos button {
    font-family: inherit;
    font-size: 1.1rem;
    color: #ffffff;
    border: 2px solid #c2d9ff;
    background: #65bdff91;
    box-shadow: 0 0 5px #ffffff;
    border-radius: 12px;
    margin: 0 0.25rem;
}
