*{
    margin: 0;
    padding: 0;
    text-align: center;
}



body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-block;
    background-size: cover;
    background-color: rgba(121, 228, 157, 0.856);
    margin-top: 20px;
}

.tarjeta{
    margin: 0%;
    padding: 0%;
    background-image: linear-gradient(rgb(90, 90, 206),lightblue);
    text-align: center;
    width: 520px;
    height: 500px;
    border-radius: 12px;
    border: 2px solid;
    box-shadow: 10px 10px rgba(0, 0, 0,0.2);
}

.imagen{
        margin: auto;
        border: 3px solid;
        border-radius: 50%;
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
        transition: tranform 0.3s ease;
}
.imagen:hover{
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.945);
}

.tarjeta p{

    margin-bottom: 20px;
    margin-top: 20px;

}

.tarjeta h1{
    text-decoration: underline;
    margin-top: 20px;
    margin-bottom: 20px;
}