.wrapper{
    height: 250px;
    width: 450px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.shape-1{
    height: 300px;
    width: 300px;
    position: absolute;
    background: linear-gradient(
        45deg,
        #ee2d2d,
        #ac0a0a
    );
    border-radius: 50%;
    right: -80px;
    top: -100px;
}
.shape-2{
    height: 180px;
    width: 180px;
    background: linear-gradient(
        45deg,
        #61d954,
        #2ebf75
        
    );
    position: absolute;
    border-radius: 50%;
    left: -50px;
    bottom: -90px;
}
.card{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.06);
    border-radius: 10px;
    box-shadow: 20px 20px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
}
.card img{
    width: 60%;
    position: absolute;
    right: -75px;
    bottom: 30px;
    filter: drop-shadow(8px 8px 10px rgba(0,0,0,0.6));
}

.card img.juez{
    width: 57%;
    position: absolute;
    right: -90px;
    bottom: 30px;
}

.text-container{
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    left: 30px;
    justify-content: center;
}
.text-container h2{
    margin-bottom: 20px;
    color: #000;
    /* font-family: "Poppins",sans-serif; */
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 30px;
}
.text-container p{
    color: #000;
    font-family: "Poppins",sans-serif;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0.2px;
    text-align: justify;
}

@media screen and (max-width:670px){
    .wrapper{
        height: 300px;
        width: 350px;
    }

    .shape-1{
        height: 150px;
        width: 150px;
        right: -35px;
         top: -100px;
    }
    .shape-2{
        height: 180px;
        width: 180px;
    }

    .card img{
        width: 50%;
        position: absolute;
        right: -25px;
        bottom: 30px;
        filter: drop-shadow(8px 8px 10px rgba(0,0,0,0.6));
    }

    .card img.juez{
        width: 45%;
        position: absolute;
        right: -35px;
        bottom: 30px;
    }

    .titulojuez{
        font-size: 25px;
    }

    .text-container p{
        text-align: left;
    }
    .text-container h2{
        font-size: 24px;
    }
}