@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}
.fondo{
    position: relative;
    width: 80%;
    max-width: 400px;
}
.img-fondo{
    width: 100%;
    height: 100%;
    border: 1px solid;
    box-shadow: 0 0 25px black, 0 0 10px rgba(0, 0, 0, 0.709);
}
.img-cinco{
    position: absolute;
}
.textos{
    position: absolute;
    bottom: 25px;
    right: 0;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 2px #001eff82;
}
.textos h1{
    margin-bottom: 15px;
    font-weight: 700;
    color: #ff00a6;
    color: #26ff00;
    color: #0099ff;
    text-shadow: 0 0 3.5px #ff00a6, 0 0 3.5px #ff00a6, 0 0 3.5px #ff00a6, 0 0 3.5px #ff00a6;
}
.img-cinco{
    position: absolute;
    width: 30%;
    right: 3%;
    top: 15%;
    display: inline-block;
    margin: auto;
    animation-name: rotar;
    animation-timing-function: linear;
    animation-duration: 15s;
    animation: infinite rotar 4s linear;
    animation-delay: 0;
    animation-play-state: running;
    filter: drop-shadow(0 0 2px #00ffd5);
}
@keyframes rotar{
    25%{
        transform: perspective(1500px) rotateY(90deg);
        transform-origin: 50% 50%;
    }
    50%{
        transform: perspective(1500px) rotateY(180deg);
        transform-origin: 50% 50%;
    }
    75%{
        transform: perspective(1500px) rotateY(270deg);
        transform-origin: 50% 50%;
    }
    100%{
        transform: perspective(1500px) rotateY(360deg);
        transform-origin: 50% 50%;
    }
}
#jpf{
    text-decoration: none;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 10px;
    font-family: "Special Elite";
    color: black;
    font-size: 15px;
}
#jpf a{
    color: #1100ff;
    text-decoration: none;
    font-family: "Special Elite";
    font-size: 15px;
}