*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  background-color: #F3F3F2;
}

.header {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
}

.header img {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

h1, figcaption {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #333;
  text-align: center;
  position: relative;
  shape-margin: 50px auto;
  font-size: 2.5rem;
  margin-top: 35px;
  letter-spacing: 6px;
}

figcaption {
  font-size: 1.3rem;
  margin-top: 10px;
  letter-spacing: 3px;
}

a{
  text-decoration: none;
}

.img_numant {
  width: 65%;
  margin: 50px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  grid-gap: 30px;
}

.img_numant img {
  width: 100%;
  cursor: pointer;
  transition: 1s;
}

.img_numant img:hover{
  transform: scale(1.2);
}

.casita {
  text-align: center;
}

@media only screen and (max-width: 768px) {

h1{
  font-size: 2rem;
}

figcaption{
  font-size: 1rem;
}

.casita {
    display: none !important;
}

}
