body::-webkit-scrollbar {
  display: none;
}

.vimeo .embed-container iframe,
.vimeo .embed-container object,
.vimeo .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  display: flex;
  padding: 10px 0px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  row-gap: 10px;
  column-gap: 10px;
}

.vid-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 220px;
  width: 45%;
  position: relative;
  overflow: hidden;
  background: black;
  border-radius: 4px;
}

.vid-block .caption {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 16px;
  color: white;
  font-family: "Nanum Gothic", sans-serif;
}

.vid-block .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: sans-serif;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  .container {
    padding: 20px;
  }

  .vid-block {
    width: 100%;
  }
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}