:root {
    --outline-color: #E74C3C;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
}

.card {
    overflow: visible;
    width: min(45vh, 80vw);
    height: 70vh;
    background-color: #1a1a1a;
    user-select: none;
}

.content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
}

.front, .back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
}

.back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 260px;
    height: 160%;
    background: linear-gradient(90deg, transparent, var(--outline-color), var(--outline-color), var(--outline-color), var(--outline-color), transparent);
    animation: rotation_481 6.9s infinite linear;
}

.back-content {
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background-color: #151515;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card:active .content {
    transform: rotateY(180deg);
}

@keyframes rotation_481 {
    0% {
        transform: rotateZ(0deg);
    }

    0% {
        transform: rotateZ(360deg);
    }
}

#Capa_1 {
    stroke: var(--outline-color);
}

.front {
    transform: rotateY(180deg);
    color: white;
}

.front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    display: block;
    text-align: center;
    font-size: 2.7em;
}

.title span {
    color: var(--outline-color);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2em;
    font-style: italic;
}

.front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
  
.circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--outline-color);
    filter: brightness(50%) blur(15px);
    position: relative;
    animation: floating 2600ms infinite linear;
}

#bottom {
    background-color: var(--outline-color);
    filter: hue-rotate(25deg) blur(15px);
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
}
  
#right {
    background-color: var(--outline-color);
    filter: hue-rotate(-35deg) blur(15px);
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
}
  
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}