body {
  font-family: 'Roboto', sans-serif;
  height:100vh;
  
}
@media (min-width: 767px) {
  body {
    font-size: 27px;
  }
}
@media (min-width: 968px) {
  body {
    font-size: 16px;
    background-color: #111c2d;
    background-blend-mode: soft-light,screen;
    background-repeat: no-repeat;
  }
}
img {
  max-width: 100%;
}
/* Boton */
.boton {
  text-align: center;
  display: block;
  background-color: #dd980a;
  color: #ffffff;
  text-decoration: none; 
  text-transform: uppercase;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 0;
}
@media (min-width: 767px) {
  .boton {
    padding: 20px 0;
  }
}
@media (min-width: 968px) {
  .boton {
    padding: 10px 0;
  }
}
/* Utilidades */
.centrar-texto {
  text-align: center;
}

/* Contenedor */
main {
  display: flex;
  justify-content:center;
  align-items:center;
  height: 100vh;
}
.container-login {
  width: 100%;
  height: 100vh;
  background-color: white;
}
.imagen-complementaria{
  display: none;
}
@media (min-width: 980px) {
  .container-login {
    max-width: 900px;
    max-height: 555px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    background-color: #e0e0e0;
  }
  .imagen-complementaria{
    display: block;
    width:100%;
  }
}
.login {
  width:100%;
}
@media (min-width: 768px) {
  .login img {
    height: 450px;
  }
}
@media (min-width: 980px) {
  .login img {
    height: 265px;
  }
}
.contenido-login {
  padding: 20px;
}

/* Redes sociales */
.redes-sociales {
  display: flex;
  justify-content: flex-end;
}
.redes-sociales a {
  margin-right: 20px;
}
.redes-sociales a:last-of-type{
  margin-right: 0;
}
.redes-sociales img {
  height: 50px;
}
@media (min-width: 767px) {
  .redes-sociales img {
    height: 70px;
  } 
}
@media (min-width: 968px) {
  .redes-sociales img {
    height: 40px;
    
  }
}
.whatpsapp {
  display: flex;
  margin-left: 10px;
  align-items:center;
}
.whatpsapp p {
  margin: 0;
  margin-left: 5px;
}
/* Informacion */
.container-informacion {
  display: flex;
  align-items:center;
}
.container-informacion img {
  height: 45px;
  margin-right: 10px;
}
@media (min-width: 767px) {
  .container-informacion img {
    height: 60px;
    margin-right: 10px;
  }
}
@media (min-width: 980px) {
  .container-informacion img {
    height: 35px;
    margin-right: 10px;
  }
  .informacion-web-telefono {
    display: flex;
  }
  .container-informacion.web {
    margin-right:15px;
  }
}
/****** Tipo User *******/
.user {
  background-color: white;
  padding: 10px;
}
.container-perfil h1 {
  font-size: 3rem;
  color:#dd980a;
  text-transform: uppercase;
}
.container-perfil h2 {
  font-size: 1.6rem;
  color:#111c2d;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .container-perfil h1 {
    font-size: 5rem;
    margin: 1rem auto;
  }
  .container-perfil h2 {
    font-size: 2.5rem;
    margin: 2rem auto;
  }
}

.container-perfil a {
  margin: 30px 0 15px 0;
  font-size: 1.7rem;
  width: 100%;
}
@media (min-width: 767px) {
  .container-perfil a {
    margin: 0px 0 50px 0;
    font-size: 2.4rem;
    width: 100%;
  }
}
@media (min-width: 980px) {
  .container-perfil a {
    
    font-size: 2.4rem;
    width:20%;
  }
  .boton-salir{
    display: flex;
    justify-content:center;
  }
}
.container-card-perfil {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contenido-card {
  margin-bottom: 10px;
}
@media (min-width: 767px) {
  .container-card-perfil {
    column-gap: 20px;
    max-width: 900px;
  } 
}
.container-card-perfil img {
  height: 160px;
}
@media (min-width: 767px) {
  .container-card-perfil img {
    margin-bottom: 20px;
    height: 280px;
  }
}
@media (min-width: 980px) {
  .container-card-perfil {
    display: grid;
    /*grid-template-columns: repeat(4, 1fr);*/
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    margin: auto;
    column-gap: 10px;
  } 
}





