/* CONFIGURACION GENERAL */

@import url("https://fonts.googleapis.com/css?family=Poiret+One&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  .colorhoover {
    color: rgb(0, 50, 65);
  }

  body {
    background-color: rgb(0, 150, 180);
  }

  /* CONFIGURACION DEL HEADER */

  header {
    background-color: rgb(0, 150, 180);
    font-family:'Poiret One', sans-serif;
  }

  header .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

  header .logo {
    padding: 0px 25px;
    font-family: 'arial';
    font-weight: 600;
    font-size: 3.5em;
    color: white;
  }

  img {
    width: 64px;
    height: 40px;
    position: relative;
    background-color: none;
    margin-left:  30px;
}

header nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 5px;
}
 
header a {
    padding: 5px 12px;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: bold;
    color: white;
}

header a:hover {
    color: rgb(0, 50, 65);
}

 /* CONFIGURACION DEL MAIN */

#principal .contenedor .texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  background-color: rgb(0, 150, 180);
  color: white;
  font-family: 'Poiret One', sans-serif;
}

#principal h1 {
  padding: 0px;
  font-size: 2em;
  font-weight: bold;
}

#principal ul {
  padding: 24px;
  font-size: 1.5em;
  font-weight: bold;
}

#principal p {
  padding: 0px;
  font-size: 1.2em;
  font-weight: bold;
}

#principal .contenedor .imagen-contenedor {
  background-color: rgb(0, 150, 180);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 295px;
  
}

#principal .contenedor .imagen-contenedor img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-left: 0px;
}

footer .contenedor {
  background-color: rgb(0, 150, 180);
  color: white;
  font-family: 'arial', sans-serif;
  font-weight: bold;
  font-size: .9em;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width:450px) and (max-width:1024px) {
    
  header .contenedor {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 0px 40px;
    }

  header nav {
      flex-direction: row;
    }

#principal .contenedor {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 0px, 100px;
    }

#principal .contenedor .texto {
    padding-left: 80px;
    font-weight: bold;
    height: 87vh;
}

#principal .contenedor .imagen-contenedor {
    padding-right: 100px;
    height: 87vh;
}

#principal h1 {
  padding: 0px;
  font-size: 2.5em;
}

#principal ul {
  padding: 48px;
  font-size: 2em;
}

#principal p {
  padding: 0px;
  font-size: 1.5em;
}

footer .contenedor {
  justify-content: right;
  padding-right: 20px;
}

#principal .contenedor .imagen-contenedor img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  margin-left: 0px;
}

}

@media (min-width:1024px) {
    
  header .contenedor {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 0px 40px;
    }

  header nav {
      flex-direction: row;
    }

    header a {
      font-size: 1.5em;
  }

#principal .contenedor {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }

#principal .contenedor .texto {
    padding-left: 200px;
    font-weight: bold;
    height: 87vh;
}

#principal .contenedor .imagen-contenedor {
    padding-right: 200px;
    height: 87vh;
}

#principal h1 {
  padding: 0px;
  font-size: 3.5em;
}

#principal ul {
  padding: 48px;
  font-size: 3em;
}

#principal p {
  padding: 0px;
  font-size: 2em;
}

footer .contenedor {
  justify-content: right;
  padding-right: 20px;
}

#principal .contenedor .imagen-contenedor img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  margin-left: 0px;
}

}
