/* CV */

#img-cv {
    width: 40%;
    height: 40%;
    border-radius: 5px;
    box-shadow: none;
    transition: box-shadow 0.5s, filter 0.5s;
    object-fit: cover;
    filter: grayscale(100%) brightness(60%) blur(10px);
}

.container-cv-img {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#a-cv-container {
    background-color: var(--lightbeige);
    color: black;
    padding: 10px 50px;
    border-radius: 40px;
    font-size: 1.5em;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s, padding 0.5s,
        border-radius 0.5s;
}

.centered:hover + #img-cv {
    transition: all 0.5s;
    filter: grayscale(0%) brightness(100%) blur(3px);
    box-shadow: 0 0 50px 0 rgba(63, 113, 173, 0.5);
}

#a-cv-container:hover {
    background: rgb(2, 0, 36);
    background: linear-gradient(
        90deg,
        rgba(2, 0, 36, 1) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    color: white;
    transition: all 0.5s;
}

/* Fin CV */