@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

body{
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
}

header{
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: rgb(26, 231, 132);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 100% 0;
}

main {
}

.bloque1 { 
  background-image: url(../img/rosse-1.jpg);
  background-size: cover;
  background-position: left bottom;
  height: 100vh;
}

.bloque2 { 
  background-color: blue;
  color: white;
}

.fondocolor {
  background-color: black;
  border-radius: 0 100% 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bloque3 { 
  background-image: url(../img/rosse-2.jpg);
  background-size: cover;
  background-position: center;
  height: 50vh;
}

.bloque4 { 
  width: 100%;
  border-radius: 0 0 100% 0;
  background-color: rgb(239, 239, 239);
  color: black;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bloque5 { 
  width: 100%;
  border-radius: 0 0 100% 0;
  background-color: rgb(239, 239, 239);
  color: black;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bloque6 { 
  width: 100%;
  border-radius: 0 0 100% 0;
  background-color: rgb(239, 239, 239);
  color: black; 
  padding-top: 10px;
  padding-bottom: 10px;
}

.bloque7 { 
  width: 100%;
  border-radius: 0 0 100% 0;
  background-color: rgb(239, 239, 239);
  color: black;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bloque8 { 
  background-image: url(../img/valentina_rossa.jpeg);
  background-size: cover;
  background-position: center;
  border-radius: 0 0 0 100%;
  display: flex;
  align-items: flex-end;
  height: 300px;
}

.bloque9 { 
  background-image: url(../img/abril_ferrenti.jpeg);
  background-size: cover;
  background-position: top center;
  border-radius: 0 0 0 100%;
  display: flex;
  align-items: flex-end;
  height: 300px;
}

footer {
  background-color: rgb(26, 231, 132);
  width: 100%;
  height: auto;
  border-radius: 100% 0 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

body footer img {
  height: 40px;
  width: auto;
  margin-right: 30px;
}

footer ul {
  list-style: none;
}

footer ul li{
  float: left;
}





  /* Estilos */


  body header img{
    height: 60px;
    width: auto;
    margin-left: 15px;
  }

  body header ul {
    list-style: none;
  }

  body header nav ul li {
    float: left;
    font-family: 'Space Grotesk', sans-serif;
    color: black;
    text-decoration: none;
    padding: 10px 15px 10px 15px;
    border: solid 1px black;
    border-radius: 100%;
    transition-property: all;
    transition-duration: 0.5s;
    margin-left: -30px;
    margin-top: -15px;
  }

  .botones {
    float: left;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    text-decoration: none;
    padding: 10px 5px 10px 5px;
    border: solid 1px black;
    border-radius: 100%;
    transition-property: all;
    transition-duration: 0.5s;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .botones:hover {
    padding: 10px 15px 10px 15px;
  }


  body header nav ul li:hover {
    padding: 10px 30px 10px 30px;
  }

  h1{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5em;
    line-height: 80%;
    color: white;
  }

  h2{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
  }

  p{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1em;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 20px;
  }

  ul{
    padding-bottom: 20px;
  }

  li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1em;
    margin-left: 20px;
    margin-right: 20px;
  }

  a{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    text-decoration: none;
    color: blue;
  }

  a:hover{
    font-weight: 100;
    background-color: rgb(26, 231, 132);
  }
  

  


  /* MQ Tablet */

@media (min-width: 750px) {
  header{
      width: 100%;
  }

  main {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap: 0px 0px; 
    grid-template-areas: 
      "bloque1 bloque1 bloque1 bloque1"
      "bloque2 bloque2 bloque3 bloque3"
      "bloque4 bloque4 bloque5 bloque5"
      "bloque6 bloque6 bloque7 bloque7"
      "bloque8 bloque9 . ."; 
  }

  .bloque1 { 
    grid-area: bloque1;
  }

  .bloque2 { 
    grid-area: bloque2; 
  }

  .bloque3 { 
    grid-area: bloque3;
    height: 100vh;
  }

  .bloque4 { 
    grid-area: bloque4;
  }

  .bloque5 { 
    grid-area: bloque5;
  }

  .bloque6 { 
    grid-area: bloque6;
  }

  .bloque7 { 
    grid-area: bloque7;
  }

  .bloque8 { 
    grid-area: bloque8; 
  }

  .bloque9 { 
    grid-area: bloque9;
  }

  footer {
    flex-direction: row;
  }
  
  footer ul li{
    float: none;
  }


}






   /* MQ Escritorio */

@media (min-width: 990px) {
    header{
        width: 50%;
    }

    main {
      display: grid; 
      grid-template-columns: 1fr 1fr 1fr 1fr; 
      grid-template-rows: 1fr; 
      gap: 0px 0px; 
      grid-template-areas: 
        "bloque1 bloque1 bloque2 bloque3"
        "bloque4 bloque5 bloque6 bloque7"
        "bloque8 bloque9 . ."; 
    }

    .bloque1 { 
      grid-area: bloque1;
    }

    .bloque2 { 
      grid-area: bloque2; 
    }

    .bloque3 { 
      grid-area: bloque3;
    }

    .bloque4 { 
      grid-area: bloque4; 
    }

    .bloque5 { 
      grid-area: bloque5;
    }

    .bloque6 { 
      grid-area: bloque6;
    }

    .bloque7 { 
      grid-area: bloque7;
    }

    .bloque8 { 
      grid-area: bloque8; 
    }

    .bloque9 { 
      grid-area: bloque9;
    }

    footer {
      flex-direction: row;
    }

    footer ul li{
      float: none;
    }


  }



  .wireframes{
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: rgb(237, 237, 237);
    padding: 5%;
  }