.sides {
  animation: 0.7s curtain cubic-bezier(.86,0,.07,1) 0.4s both;
  display: grid;
  grid-template-columns: 50vw 50vw;
}

@keyframes curtain {
  0% {
    grid-gap: 100vw; 
  }
  
  100% {
    grid-gap: 0;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  touch-action: manipulation;
  }

body {
  font-family: "Arial Black", sans-serif;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  height: 100vh;
  display: flex;
}
.intro {
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.sides {
  position: relative;
}

.side {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 6vw;
}

.monkey {
  background: #dcc9a1 url('img/half-allan.jpg') no-repeat top right;
  background-size: cover;
  color: #fff;
}

.robot {
  background-color: #1b636f;
  color: #ffffff;
  flex-direction: column-reverse;
}

.name {
  margin: 0.3em;
  font-size: clamp(30px, 8vw, 50px);
}

.emoji {
  font-size: 1em;
  width: 100%;
}
p {
  font-size: 1.4rem;
}
p a {
  color: white;
}

.versus {
  position: absolute;
  width: 12vw;
  height: 12vw;
  background: #ffffff;
  border-radius: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4vw;
  color: #123456;
  border-width: 10px;
  border-style: solid;
  border-color: #1b636f #dcc9a1 #dcc9a1 #1b636f;
  transform: rotate(-45deg);
}

.versus span {
  transform: rotate(35deg);
}

.video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
}