@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:700);
html, body{
    height: 100%;
    margin:0px;
    overflow:hidden;
}

div {
  font-family: 'Josefin Slab', serif;
  font-size:190px;
  position:relative;
}

.black .container {
  position:absolute;
  bottom:-48px;
}
.white .container {
  position:absolute;
  top:-12px;
}
div.white{
  color:#210010;
  background-color:#fcfcfe;
  width:100%;
  height:50%;
  padding:0px !important;
}
div.black {
  color:#fcfcfe;
  background-color:#210010;
  width:100%;
  height:50%;
  padding:0px !important;
}
img{
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 99;
    transform: translateY(-50%);
    object-fit: contain;
}

@media(max-width:1200px){
    img{
        display: none;
    }
    div{
        font-size: 2rem;
    }
    .black .container {
        bottom: -8px;
        right: 0;
        left: 0;
        text-align: center;
    }
    .white .container {
        position: absolute;
        top: -4px;
        right: 0;
        left: 0;
        text-align: center;
    }
}