* {
    margin: 0;
    padding: 0;
}

.con-principal {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.con-img {
    width: 500px;
    height: auto;
    border-radius: 20%;
    padding: 10px;
}

.con-img img {
    border-radius: 20%;
    width: 100%;
    height: 100%;
}

.con-principal .text {
    font-size: 45px;
    user-select: none;
    color: #FB9DAC;
    text-shadow: 0px 1px 0px #FDCFD7,
        0px 2px 0px #FAB9C5,
        0px 3px 0px #F89BB1,
        0px 4px 0px #F57D9D,
        0px 5px 0px #F35F89,
        0px 6px 1px rgba(245, 95, 137, .1),
        0px 0px 5px rgba(245, 95, 137, .1),
        0px 1px 3px rgba(245, 95, 137, .3),
        0px 3px 5px rgba(245, 95, 137, .2),
        0px 5px 10px rgba(245, 95, 137, .25),
        0px 10px 10px rgba(245, 95, 137, .2),
        0px 20px 20px rgba(245, 95, 137, .15);
}

.corazon {
    animation: latido 1s infinite;
    background-color: red;
    display: inline-block;
    height: 30px;
    margin: 0 10px;
    top: 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 500px;
    right: 300px;
    width: 30px;
}

.corazon:before,
.corazon:after {
    content: "";
    background-color: red;
    border-radius: 50%;
    height: 30px;
    position: absolute;
    width: 30px;
}

.corazon:before {
    top: -17px;
    left: 0;
}

.corazon:after {
    left: 17px;
    top: 0;
}
.uno{
    top: 50px;
    right: 50px;
}

@keyframes latido {
    0% {
        transform: scale(1) rotate(-45deg);
    }

    20% {
        transform: scale(1.25) rotate(-45deg);
    }

    40% {
        transform: scale(1.5) rotate(-45deg);
    }
}

@media screen and (max-width: 480px){
    .con-img{
        width: 50%;
        margin-top: -100px;
        height: auto;
    }
    .con-img img{
        width: 100%;
        height: 100%;
    }
    .con-principal .text {
        font-size: 30px;
    }
}