/* font-family: 'Playball', cursive; */

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333;
}

h2,
h3 {
  font-family: "Alegreya", serif;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 36px;
}
h1 {
  font-family: "Playball", cursive;
  font-size: 80px;
}
img {
  width: 100%;
}
header h1 {
  text-align: center;
  background: #333;
  padding: 60px 0;
  color: #ffffff;
  text-shadow: 0 -1px 4px #fff, 0 -2px 10px #ff0, 0 -10px 20px #ff8000, 0 -18px 40px #f00;
}
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
p {
  line-height: 1.4em;
}
a {
  text-decoration: none;
  color: #333;
}
header {
  width: 100vw;
}

.gallery {
  width: 80%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 40px;
}
.gallery .card {
  text-align: center;
  border: 1px solid #333;
  padding: 40px;
}

footer {
  margin-top: -10px;
  width: 100vw;
  padding: 40px 120px;
  min-height: 500px;
  color: #fff;
  background: #666;
  text-align: center;
}

.hideme {
  display: none;
}
