@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  src: url('./fonts/open-sans.woff2') format('woff2');
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-height: 18em;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

@media (min-width: 500px) {
  body {
    flex-direction: row;
  }
}

.split-pane {
  flex: 1;
  height: 50%;
  min-height: 9em;
  padding-top: 1em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 2em;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

@media (min-width: 500px) {
  .split-pane {
    height: 100%;
    padding-top: 2em;
  }
}

.uiux-side {
  background-image:
    linear-gradient(rgba(16, 36, 95, 0.72), rgba(16, 36, 95, 0.72)),
    linear-gradient(90deg, rgba(49, 104, 255, 0.30), rgba(49, 104, 255, 0.12)),
    url('./images/media-systems.png');
}

.frontend-side {
  background-image:
    linear-gradient(rgba(6, 63, 58, 0.74), rgba(6, 63, 58, 0.74)),
    linear-gradient(90deg, rgba(0, 184, 122, 0.12), rgba(0, 184, 122, 0.30)),
    url('./images/monetized-streaming.png');
}

.split-pane > div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

.split-pane > div .text-content {
  line-height: 1.05;
  margin-bottom: 1em;
}

.bold {
  text-transform: uppercase;
  font-size: 0.62em;
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1;
}

.big {
  font-size: 1.9em;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.frontend-side .big {
  font-size: 1.68em;
  letter-spacing: -0.045em;
}

.split-pane button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  width: 15em;
  padding: 0.7em;
  font-size: 0.5em;
  color: white;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.split-pane button:hover {
  background-color: white;
  border-color: white;
}

.uiux-side button:hover {
  color: #3168ff;
}

.frontend-side button:hover {
  color: #00b87a;
}

#split-pane-or {
  font-size: 2em;
  color: white;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}

#split-pane-or > div {
  width: 2.45em;
  height: 2.45em;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
}

#split-pane-or > div img {
  width: 1.78em;
  height: 1.78em;
  object-fit: contain;
  display: block;
}

@media (min-width: 500px) {
  #split-pane-or {
    font-size: 3em;
  }
}

@media (max-width: 500px) {
  #split-pane-or {
    top: 50px;
  }

  #split-pane-or > div {
    width: 2.05em;
    height: 2.05em;
  }

  #split-pane-or > div img {
    width: 1.48em;
    height: 1.48em;
  }
}