* {
    margin: 0;
    padding: 0;
    box-sizing:border-box
}

body{
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(0, 0, 0);

}

.logo{
    padding: 0;
    width:60px;
    display: flex;
}

nav{
    text-align: right;
    padding: 30px 50px 0 0;
}

nav > a{
    color:rgb(255, 255, 255);
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
}

.cards{
    display: flex;
    justify-content: space-evenly;
}

.cards .card{
    background: #E8490F;
    display: flex;
    width: 46%;
    height: 200px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 100px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}

.cards .card img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid rgb(0, 0, 0);
    border-radius: 10%;
    display: block;
}   

.cards .card > .contenido-texto-card{
    width: 70%;
    color: rgb(255, 255, 255);
}

.cards .card > .contenido-texto-cardp{
    font-weight: 300;
    padding-top: 5px;
}