html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
}

/* Quick reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.videobg {
  position: relative;
  width: 100%; /* Set video container element width here */
  height: 100%; /* Set video container element height here */
  overflow: hidden;
  background: #111; /* bg color, if video is not high enough */
}

/* horizontally center the video */
.videobg-width {
  position: absolute;
  width: 100%; /* Change width value to cover more area*/
  height: 100%;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

/* set video aspect ratio and vertically center */
.videobg-aspect {
  position: absolute;
  width: 100%;
  height: 0;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  padding-bottom: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  
}

.videobg-make-height {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}

.videobg iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0 none;
}


.content {
  position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.content-item {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding: 10px 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.content-item button {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
    font-size: 20px;
    width: 50px;
    cursor: pointer;
}

@media only screen and (min-width : 768px) {

.content-item {
  font-size: 30px;
}

.content-item button {
  font-size: 30px;
}

}

.content-item a {
  color: #fff;
  text-decoration: none;
}

.content-item .fas {
    color: #7dafd7;
    margin-right: 5px;
}