body {
  margin: 0;
}

.container {
  background: transparent url("assets/bg.png") repeat;
  display: flex;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.topRow {
  display: flex;
  width: 380px;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #90da05;
}

.videoBox {
  position: relative;
  width: 80%;
  max-width: 1058px;
  display: flex;
  justify-content: center;
}

.video {
  width: 90%;
  z-index: 1;
}

.videoOverlay {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: url("assets/cane.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

.bottomRow {
  flex: 1;
  display: flex;
  width: 380px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  background-color: #90da05;
  height: 100%;
}

@media (max-width: 767px) {
  .videoOverlay {
    background-image: url("assets/cane_mobile.png");
  }
  .topRow {
    width: 60%;
    padding-top: 75px;
    padding-bottom: 50px;
  }
  .bottomRow {
    width: 60%;
    padding-top: 50px;
  }
}

@media (max-width: 500px) {
}

.button {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  background-color: black;
  padding: 20px;
  font: normal normal bold 16px/19px Montserrat;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
