html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Anton', sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  border: 4px solid #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 56px;
  right: 195px;
  bottom: 0;
  left: 180px;
  display: flex;
}

.bg-part {
  flex: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) blur(2px);
  transition: filter 0.3s, transform 0.3s;
}

.bg-center {
  background-image: url('https://i.goopics.net/7ba6sq.png');
}

.hero:hover .bg-part {
  filter: brightness(0.6) blur(2px);
}

.logo {
  position: relative;
  color: #fff;
  font-size: 12vw;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
  z-index: 1;
}

@media (max-width: 600px) {
  .logo {
    font-size: 20vw;
  }
}
