* {
  font-family: monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  background: #000;
}
.bg {
  width: 95%;
  height: 95%;
  max-width: 724px;
  max-height: 474px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: #000;
  border: solid 1px #e7e7e7;
}
.container {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  max-width: 700px;
  max-height: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: #e7e7e7;
}
.inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  width: 100%;
  visibility: visible;
}
.info {
  width: 55%;
  height: 100%;
  padding: 20px;
}
.info h1 {
  font-size: 42px;
  margin-bottom: 6px;
}
.info h2 {
  font-size: 17px;
  letter-spacing: 8px;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.info p {
  line-height: 1.5;
  margin-bottom: 24px;
}
.info .links a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-right: 12px;
}
.info .links a:hover,
.info .links a:focus {
  color: #c23814;
}
.box {
  position: relative;
  width: 45%;
  height: 50%;
  background: #d8d8d8;
  filter: brightness(90%);
  cursor: pointer;
}
.box:nth-of-type(2) {
  color: #fff;
  background: #202020;
}
.box > div {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
  transition: 0.25s ease;
}
.box:hover > div {
  scale: 1.1;
}
.box > div strong {
  font-size: 20px;
}
.box > div strong:last-of-type {
  font-size: 35px;
}

.name {
  height: 20px;
  position: absolute;
  left: 6px;
  bottom: -14px;
  padding: 0 6px;
  background: #000;
}
.name a {
  color: #fff;
  text-decoration: none;
}

/* Dynamic Containers */
.hidden {
  display: none;
  visibility: hidden;
  transition: visibility 0.25 ease;
}
.lists {
  padding: 20px;
  flex-wrap: nowrap;
}
.lists > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.lists > div:first-of-type {
  margin-bottom: 20px;
}
.lists > div > strong {
  font-size: 20px;
}
.lists > div .back-home {
  cursor: pointer;
}
.lists > div .back-home:hover {
  scale: 1.1;
  transition: 0.25s ease;
}
.lists .list-items {
  display: flex;
  flex-direction: column;
  overflow: scroll;
}
.lists .list-items .item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.lists .list-items .item:not(:first-of-type) {
  margin-top: 7.5%;
}
.lists .list-items .item img {
  width: 30%;
}
.lists .list-items .item a {
  color: #000;
}
.lists .list-items .item a:hover {
  color: #c23814;
}
.lists .list-items .item p {
  margin: 7.5px 0;
}
.lists .list-items .item > div {
  width: 67.5%;
}

@media screen and (max-width: 650px) {
  .container,
  .bg {
    flex-direction: row;
    flex-wrap: wrap;
    max-height: unset;
  }
  .container .info {
    width: 100%;
    height: 70%;
    overflow-y: scroll;
  }
  .inside:not(.lists) {
    flex-direction: row;
  }
  .container .box {
    width: 50%;
    height: 30%;
  }
  .box > div strong {
    font-size: 4.5vw;
  }
  .box > div strong:last-of-type {
    font-size: 6.5vw;
  }

  .lists .list-items .item {
    flex-direction: column;
  }
  .lists .list-items .item img {
    width: 50%;
  }
  .lists .list-items .item > div {
    width: 100%;
    margin-top: 15px;
  }
}

@media screen and (max-width: 500px) {
  .lists .list-items .item img {
    width: 70%;
  }
}
