@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Catamaran:100,400,700,900&display=swap');

body,
div, a, span, p, h1, h2, h3 {box-sizing: border-box; margin:0;}

body {
  background-color: #363636;
  font: 14px/20px Catamaran, Arial, sans-serif;
}
.title, .title img {
  width:100%;
}
.subtitle {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 25px;
}
.hours {
  width:100%;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}
.hours > div {
  width: calc(100% / 6);
  height: 10vh;
  padding: 10px;
  background-color: #dedede;
  border: 1px solid #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
}
.suspects {
  width:100%;
  display: flex;
  flex-wrap: wrap;
}
.suspects > div {
  width: calc(100% / 3);
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #363636;
  border: 1px solid #363636;
}
.suspects > div > img { 
  width: 100%;
  height: 20vh;
  object-fit: cover;
}
.elimine {
  opacity: .5;
  filter: grayscale(1);
}

@media screen and (max-width:600px) {
}
@media screen and (max-width:380px) {
}
