/* Add here all your CSS customizations */
html {
  scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
}

li {
	text-align: justify;
}

#contenedor_portada {
  text-align: center;
}

#contenedor_portada h1, #contenedor_portada p {
  color: white;
}

#contenedor_portada h1 {
  margin-top: 150px;
  font-weight: bold;
  font-size: 6vw;
}

#contenedor_portada p {
  font-size: 1.9rem;
}

#mainNav {
    font-family: "Open Sans", Arial, sans-serif;
}

#phone_img {
	margin-top: 9%;
	width: 124%;
}

#inicio {
	background: #1a88cc;
}

#tutorial {
  background: white;
  padding-top: 10%;
  padding-bottom: 10%;
}

.separador {
  margin-bottom: 60px;
} 

.button {
  display: inline-block;
  border-radius: 28px;
  background-image: linear-gradient(to right, #64B5F6 , #2196F3);
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  padding: 15px;
  width: 180px;
  transition: all 0.5s;
  cursor: pointer;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.titulo {
	padding-top: 5%;
	font-weight: 600;
	font-size: 60px;
}

.ml2 {
	margin-left: 20px;
}

.line span {
  line-height: normal;
}
.ac-title {
  line-height: 40px;
}

/*MEDIA QUERYS*/
/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {

  #contenedor_portada h1 {
    margin-top: 50px;
    font-weight: bold;
    font-size: 10vw;
  }

  .button {
    margin-bottom: 30px;
  }

  .titulo {
    line-height: 1;
    text-align: center;
  }

  #queEs {
    margin: 0;
    padding: 0;
  }
}