* {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  height: 100%;
  font-Family: Arial;
}

.tite-container {
  background-color: black;
  z-index: 2; 
  color: white;
  text-align: center;
  padding: 10px 10px;
  border-radius: 10px;
}

.time{
  text-align:center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color:white;
  font: bold 100px Arial; Helvetica, sans-serif;
}

.video-container {
  display: grid;
  justify-items: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-container video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left:50%;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(-50%) translateY(-50%);
}
.video-text {
  z-index: 2; 
  color: white;
  text-align: center;
}
.video-container h1, .video-container h2  {
  margin: 0;
  font-size: 3rem;
}
.video-container h2  {
  font-size: 1.4rem;
  font-weight: normal;
  opacity: 0.6;
}

.page-content {
  /*line-height: 1.4rem;*/
  padding: 2rem;
  z-index: 2; 
}
