body {
  background-color: #fff;
  font-size: 16px;
}
#header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
}
#header-container h1 {
  font-family: 'Lobster', cursive;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: bold;
  padding-left: 15px;
}
.black {
  color: #000000;
}
.green {
  color: #17cf17;
}
.red {
  color: #ff0000;
}
nav {
  display: flex;
  flex-direction: row;
}
nav ul li {
  font-family: "Oswald", sans-serif;
  list-style: none;
  display: inline;
  padding-right: 12px;
  font-weight: bold;
}
nav ul li a {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  padding: 15px;
}
nav ul li a:hover {
  background-color: #e50c39;
  color: #fff;
}

.main-content h2 {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #000000;
  font-family: "Oswald", sans-serif;
  background: #21dc47;
}
 .gallery{
display: flex;
justify-content: center;
flex-wrap: wrap;
font-family: 'Work Sans', sans-serif;
}

.gallery li{
display: flex;/*para que la columna tenga la misma altura*/
box-sizing: border-box;
list-style: none;
width: calc(100% / 3);
padding: 10px;
}

.gallery li .box{
  padding: 4px 4px 20px 4px;
  border: 2px solid #e1e8ee;
}

.gallery li img{
  width: 100%; /*imagenes responsivas*/
  max-width: 100%;/*imagenes responsivas*/
  height: auto;
  margin-bottom: 6px;
  justify-content: center;
  overflow:hidden;
}
.gallery li img:hover{
  width: 100%; /*imagenes responsivas*/
  max-width: 100%;/*imagenes responsivas*/
  height: auto;
  margin-bottom: 6px;
  justify-content: center;
  -webkit-transform:scale(1.1);transform:scale(1.1);
  transition:all .5s ease-in-out;
  filter: saturate(110%);
}

.gallery li h3{
  margin-bottom: 6px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 100%;
  text-transform: uppercase;
  color:#17181a;
  letter-spacing: 5px;
}

.gallery li p{
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #35e035;
}

.gallery li p sup{
font-size: 1rem;
}

.gallery li time{
  display: flex;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: bold;
  color: #35e035;
}
.gallery li .button{
  margin-top: 5px;
  width: 100%;
  padding: 7px;
  border: none;
  background: #21dc47;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  font-family: "work sand", sans-serif;
}
.gallery li .button:hover{
  margin-top: 5px;
  width: 100%;
  padding: 7px;
  border: none;
  background: #21dc47;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  font-family: "work sand", sans-serif;
  color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 16px rgb(30, 204, 14);
  transition: all 0.2s ease;
}

footer{
color: #000000;
font-size: 1rem;
font-family: "Oswald", sans-serif ;
font-weight: bold;

}
#login{
width: 100%;
text-align: center;

}
#login a:hover{
  color:#000000;
  font-size: 1.1rem;
  background: rgb(10,215,40);
  background: linear-gradient(90deg, rgba(10,215,40,1) 0%, rgba(11,245,70,1) 54%, rgba(46,255,13,1) 100%);  
  border-radius: 2rem;
}
.form-signin{
  max-width: 380px;
  background-color: #fff;
  border: none;
  padding: 15px 35px 45px 35px;
}
.icon{
  width: 50px;
  height: 50px;
  color:#ffffff;
  background: #007bff;
  border-radius:50%;
  margin:0 auto;
  margin-bottom: 10px;
}
.form-signin-heading{
  margin-bottom: 30px;
}

input[type="text"]{
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
input[type="password"]{
  border-top-left-radius:0;
  border-top-right-radius:0;
}
.container{
  background: rgb(56,57,83);
  background: linear-gradient(34deg, rgba(56,57,83,1) 0%, rgba(21,0,255,1) 39%, rgba(32,10,115,1) 100%);
}
@media (max-width:960px){
  #header-container{
    flex-direction: column;
  }
  .gallery{
  flex-direction: column;
  margin-top: 60px;
  }
  h2{
    background-color: red;
  }
  .gallery li{
    width: 100%;
    justify-content: center;
  }
}

