/*----------
LANDING PAGE
-----------*/

*{ 
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
} 


ul,
ol {
    list-style: none;
}
 
a {
    text-decoration: none;
    color: black;
}

/*NAVEGACION*/
.inicio {
    display: flex;
    flex-direction: row;
    background-color: #54BBDA;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 20px;
}

/*jt02*/
.menu {
    background-color: #F1A4B9;
    color: #000000;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 50px;
    text-align: center;
    margin-left: 2rem;
}

.planmapawebapp {
    display: flex;
    flex-direction: row;
    margin-right: 2rem;
}

.boton-nav {
    background-color: #FBE705;
    margin: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    color: #000000;
}


body {
    background-color: #F0EBE0;
}




.contenedora_videoytexto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }



.imagenvideo {
  margin-bottom: 30px;
  width: auto;
  height: 600px;
  padding-left: 10px;
  padding-right: 10px;
}
  
  .tagline {
    font-size: 50px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    font-weight: 900;
    color: #7583D5;
  }
  
  .textoybotones {
    display: flex;
    flex-direction: column;
    margin-left: 60px;
  }
  
  .descarga {
    display: flex;
    flex-direction: row;
    padding: 40px;
  }
  
  .appstore {
    height: 40px;
    width: auto;
    margin: 20px;
  }
  
  .playstore {
    height: 40px;
    width: auto;
    margin: 20px;
  }
  
  .imagenesdejuego {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F1A4B9;
    margin-top: 50px;
    padding-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 40px;
    padding-bottom: 50px;
  }
  
  .tag2 {
    font-size: 35px;
    max-width: 800px;
    text-align: center;
    margin-top: 60px;
  }
  
  .juegosmockup {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 500px;
  }
  
  footer {
    padding-bottom: 2px;
  }

  .footer-texto {
    margin: 20px;
    background-color: #54BBDA;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
  }




  
  /*ancho celulares*/
  @media (max-width: 600px) {

    /*NAVEGACION*/
    .inicio {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 20px;
        padding-bottom: 0px;
    }

    /*jt02*/
    .menu {
        border-radius: 50px;
        text-align: center;
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .planmapawebapp {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .boton-nav {
        border-radius: 10px;
    }

  
    .contenedora_videoytexto {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
      }

      .imagenvideo {
        margin-bottom: 30px;
        width: 100%;
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
      }
      
      .tagline {
        font-size: 40px;
        margin: 0px;
      }
      
      .textoybotones {
        display: flex;
        flex-direction: column;
        margin-left: 60px;
        margin: 0px;
      }
      
      .descarga {
        display: flex;
        flex-direction: row;
        padding: 20px;
      }
      
      .appstore {
        height: 40px;
        width: auto;
        margin: 20px;
      }
      
      .playstore {
        height: 40px;
        width: auto;
        margin: 20px;
      }
      
      .imagenesdejuego {
        margin-top: 20px;
        padding-top: 0px;
        margin-left: 10px;
        margin-right: 10px;
        background-color: #7583D5;
        padding-bottom: 1080px;
      }
      
      .tag2 {
        font-size: 25px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
      }
      
      .juegosmockup {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: 25px;
      }


      .footer-texto {
        margin: 10px;
        margin-top: 20px;
        background-color: #54BBDA;
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        font-weight: 500;
        font-size: 14px;
      }
  }