body {
  background: url(../img/bg.jpg);
  background-size: cover;
  background-position: 50% 50%;

  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Open Sans;
}

#showrooms-wrapper {
  max-width: 980px;
  height: 100%;
  padding: 0 0 0 20px;
  margin: 0 auto;
}

@media (max-width:979px) {
  #showrooms-wrapper {
    max-width: 660px;
  }
}

@media (max-width:659px) {
  #showrooms-wrapper {
    max-width: 340px;
  }
}

.showrooms-style-wrapper {
  margin-bottom: 30px;
}

.showroom-style-title {
  margin: 0;
}

.showroom-style-title span {
  font-size: 27px;
  font-weight: 400;
  color: #f1f2f2;
  border-bottom: 3px solid #f1f2f2;
}

.showroom-style-thumbs-wrapper {
  display: flex;
  flex-flow: row wrap;
}

.showroom-style-thumb {

  display: block;

  width: 300px;
  height: 200px;
  border-radius: 8px;

  position: relative;
  margin: 20px 20px 0 0;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}

.showroom-style-thumb img {
  width: 100%;
  height: 100%;
}

.showroom-style-thumbtext {
    display: block;
    position: absolute;
    bottom: 0;
    border-radius: 0 0 6px 6px;
    width: 100%;
    color: #f1f2f2;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 0.5em 0;
    -webkit-backdrop-filter: blur(3px);
    transition-duration: 0.1s;
}

.showroom-style-thumb:hover .showroom-style-thumbtext {
  color: #000;
  background-color: #f1f2f2;
}

.showroom-style-thumb:active {
  border: 2px solid #f1f2f2;
}

.showroom-style-thumb:active .showroom-style-thumbtext {
  border-radius: 0 0 5px 5px;
}
