*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
    background-image: url(fondotizas.jpg);
    opacity: 5;
    background-size: contain;
}
.post-list{
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}
.content{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 20px;
    max-width: 1000px;
    margin: auto;
}
.img-1{
    background: url(/assets/img/Apolo\ vencedor\ de\ Pan.jpg);
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.img-2{
    width: 102%;
    height: 287px;
    background-size: cover;
    background-position: center;
    transition: .2s;
    margin-left: -3px;
}
.img-3{
    background: url(/assets/img/Dánae.jpg);
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.img-4{
    background: url(/assets/img/Edipo\ y\ la\ esfinge.jpg);
    width: 100%;
    height: 334px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.img-5{
    background: url(/assets/img/Orfeo\ y\ Eurídice.jpg);
    width: 102%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: .2s;
    margin-left: -3px;
}
.img-6{
    background: url(/assets/img/El\ juicio\ de\ Paris.jpg);
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: .2s;
    margin-top: -3px;
}
.img-7{
    background: url(/assets/img/Leda\ y\ el\ cisne\ 2.jpg);
    width: 100%;
    height: 417px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.img-8{
    background: url(/assets/img/Narciso.jpg);
    width: 100%;
    height: 314px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.img-9{
    background: url(/assets/img/Ninfas\ y\ sátiro.jpg);
    width: 102%;
    height: 291px;
    background-size: cover;
    background-position: center;
    transition: .2s;
    margin-left: -3px;
}
.img-10{
    background: url(/assets/img/Pan\ y\ Siringa.jpg);
    width: 118%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: .2s;
    margin-left: -30px;
}
.img-11{
    background: url(/assets/img/Perseo\ y\ Andrómeda\ \(1\).jpg);
    width: 100%;
    height: 417px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.img-12{
    background: url(/assets/img/Medusa.jpg);
    width: 100%;
    height: 270px;
    background-size: cover;
    background-position: center;
    transition: .2s;
}
.box{
    box-shadow: 0 1px 6px 1px rgb(0 0 0);
    overflow: hidden;
    transition: .2s;
    border-radius: 2%;
    background-color: white;
    height: 294px;
}
.box:hover{
    transform: translateY(-4px);
    box-shadow: 0 1px 14px 2px rgb(0, 0, .15);
}
.post-header{
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}
.box:hover .img-1,
.box:hover .img-2,
.box:hover .img-3,
.box:hover .img-4,
.box:hover .img-5,
.box:hover .img-6,
.box:hover .img-7,
.box:hover .img-8,
.box:hover .img-9,
.box:hover .img-10,
.box:hover .img-11,
.box:hover .img-12{
    transform: scale(1.1);
}
.post-body{
    padding: 15px;
    text-align: center;
}
/* Style the header with a grey background and some padding */
.header {
    overflow: hidden;
    background-color: none;
    padding: 3px 10px;
    background-color: white;
  }
  
  /* Style the header links */
  .header a {
    float: left;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 20px;
  }
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
  .header a.logo {
    font-size: 25px;
    font-weight: bold;
  }

  /* Float the link section to the right */
  .header-right {
    float: right;
  }
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }
.post-link{
    text-decoration: none;
    color: #020202;
}
h2{
    color: #030303;
}
@media (max-width: 840px){
    .content{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px){
    .content{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    
    .header-right {
      float: none;
    }
  }