body {
    background-color: #000000;
    color: white;
    overflow: hidden;
}

main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 80vh;
    background: linear-gradient(92deg, #000000 50%, rgba(0, 0, 0, 0) 100%) no-repeat;
}

main .person {
    display: none;
    height: 100vh;
}

main .person.selected {
    display: block;
}

main .person .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    max-width: 380px;
    z-index: 1;
}

.content .name-person {
    font-size: 48px;
    font-family: "Secular One";
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.content .description {
    font-family: "Rubik";
    font-size: 18px;
    line-height: 24px;
    opacity: 0;
    animation: fadeIn 1.4s ease-in forwards;
}

.buttons {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 16px;
}

.buttons .button {
    border: none;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons .button:hover {
    transform: scale(1.1);
}

.buttons .button img {
    border-radius: 50%;
}

.buttons .button.selected {
    transform: scale(1.2);
    box-shadow: 0 0 10px #d9d9d9;
}

.buttons .button.principal.selected {
    box-shadow: 0 0 10px #47ffc5;
}

.buttons .button.devweb.selected {
    box-shadow: 0 0 10px #9747ff;
}

.buttons .button.webdesign.selected {
    box-shadow: 0 0 10px #fff047;
}

.buttons .button.editor.selected {
    box-shadow: 0 0 10px #30a8e4;
}

.buttons .button.ia.selected {
    box-shadow: 0 0 10px #ffa947;
}

.icons {
    margin-top: 25px;
    font-size: 30px;
    opacity: 0;
    animation: fadeIn 2.5s ease-in forwards;
}

.icons i {
    color: white;
    padding: 5px;
}

.icons i:hover {
    color: gray;
    transform: scale(1.1);
}

.icons img {
    height: 40px;
    color: white;
}

.icons img:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}