
:root {
    --font-1: "Public Sans", Sans-serif;
    --font-2: "Castoro", Serif;

  /* monospace
   */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}


.container {
  display: flex;
  width: 100%;
  padding: 0% 5%;
  box-sizing: border-box;
  height: 100vh;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  margin: 0 5px;
  box-shadow: 0 20px 30px rgba(0,0,0,.1);
  line-height: 0;
  border-radius: 5px;
  background: #2d2c2a;
}

.box > img {
  width: 200%;
  height: calc(100% - 10vh);
  object-fit: cover; 
  transition: .5s;
}

.box > span {
  font-size: 12px;
  display: block;
  text-align: center;
  height: 10px;
  line-height: 1.5;
  padding: 0 10px;
  font-family: "Castoro", Serif;
  text-orientation: upright;
  font-weight: bold;
  color: #e1ddd1;

}

.box:hover { flex: 1 1 50%; }
.box:hover > img {
  width: 100%;
  /*height: 100%;*/
}
 