body{
    font-family: sans-serif;
    margin: 0;
    background: linear-gradient(45deg, rgb(219, 78, 78), rgb(201, 34, 34));
    color: white;
}
a{
    text-decoration: none;
    color: white;
}
#barra-arriba{
    display: flex;
    min-height: 70px;
    background: linear-gradient(45deg, rgb(182, 17, 17), rgb(131, 25, 25));
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo{
    display: flex;
    align-items: center;
}

.destino{
    color: rgb(119, 0, 0) !important;
    font-weight: bold !important;
}
.destino:hover{
    color: black !important;
}
.logo img{
    height: 75px;
    margin-right: 20px;
    margin-left: 20px;
    
}

nav a{
    font-weight: 600;
    padding-right: 10px;
}

nav a:hover{
    color:rgb(0, 0, 0);
}

@media (max-width:700px){
    header{
        flex-direction: column;
    }

    nav{
        padding: 10px 10px;
    }
}
/* ------------   Cuerpo   ------------ */

.fa-home:hover{
    color: black !important;
    font-size: 20px;
}

#logo{

    margin-left: 30px;
    margin-top: 20px;
    position: relative;
    width: 30%;
    border: black 8px double;
    border-radius: 50px;
    float: left;
}
#texto-inicial {
    padding-top: 40px;
    margin-right: 30px; 
    text-align: justify;
    font-size: 40px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding-left: 20px !important;
}


.copyright-section {
    background-color: rgb(48, 0, 0);
    color: white;
    text-align: 10px;
    padding: 10px 0;
    padding-left: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
#desarrollo{
    text-align: center;
}
#imglogo {
    
    display: block; 
    margin: 0 auto; 
    border-radius: 50%;
    border: 20px double black;
}
body {
    position: relative;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
  }
  
.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px;
    transition: .6s;
    
}

.title {
    margin-right: 40px;
    color: #000000;
}
  
.image {
    margin-left: 20px;
}

  
.paragraph {
    margin-top: 10px;
    max-width: 200px;
    
}

.column{
    flex-direction: column;
}

.item img{width: 150px;}

.item:hover{transform: scale(1.1);}