
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
  }
  
  body {
    font-family: "Times New Roman", Times, serif;
   
  }
  

/*Home*/
.Home {
  display: flex;
  flex-direction: row; 
  width: 100%;
 min-height: 90vh;
  background: linear-gradient(to top, #04141f, #104062, #104062, #072235);
  background-size: cover;
  overflow: hidden; 
  box-sizing: border-box;
  flex-wrap: wrap; 
}

.acerca {
  color: #ffffff;
  margin: 10px;
  padding: 30px;
  max-width: 600px;
  flex: 1;
}

.title {
  font-size: 50px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

p {
  font-size: 25px;
  color: #ffffff;
  margin: 5px 0;
}

/* Estilos para el contenedor del logo */
.logo-container {
  display: flex;
  justify-content: right;
  align-items: right;
  margin: 10px;
  flex: 1; 
}

/* Estilos para la imagen del logo */
.logo {
  width: 100%;
  margin-top: 40px;
  max-width: 350px;
  height: 600px;
  border-radius: 50%;
 
}


@media (max-width: 991px) {
 
  .Home {
    flex-direction: column; 
    align-items: center; 
  }

  .logo-container {
    justify-content: center; 
    margin-top: 20px;
  }
  
  .logo {
    max-width: 200px;
  }
}


