.espacioPlataforma{
    background-color: rgb(164, 54, 54);
    border-radius: 20px;
    width: 95%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: lighter;
    color:rgb(255, 255, 255);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(59, 59, 59);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.hijoRuhavik{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.tituloRuhavik{
    /*background-color: aqua;*/
    width: 50%;
    margin: auto;
    font-size: 40px;
    font-weight: lighter;
    color:rgb(255, 255, 255);
    text-align: center;
    padding-top: 10px;
}
.imgRuhavik{
    /*background-color: aqua;*/
    width: 150px;
    margin-bottom: 20px;
}

.botonRuhavik{
    width: 300px;
    height: 50px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(59, 59, 59);
    color:rgb(255, 255, 255);
    font-size: 20px;
    background-color: rgb(230, 12, 38);
    cursor: pointer;
    transition: all 300ms;
}
.botonRuhavik:hover{
    background-color: rgb(56, 2, 8);
    color:white;
}

.txtRuhavik{
    width: 40%;
    margin-bottom: 20px;
}


@media only screen and (max-width : 600px) {
    .espacioPlataforma{
        flex-direction: column;
        width: 85%;
    }
    .hijoRuhavik{
        flex-direction: column;
    }
    .tituloRuhavik{
        width: 95%;
    }
    .txtRuhavik{
        width: 95%;
        padding-bottom: 20px;
    }
}   