
.video-container {
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
}

.video-1-content{
    padding-top: 100px;
}
.shade{
    min-height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 1;
}
.shade-content{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}
.shade-itens{
    margin: 20px;
}
.btn-shade{
    border-radius: 20px;
}
.text-big{
    font-size: x-large;
    font-weight: bolder;
    text-shadow: 0.1em 0.1em 0.2em black
}
.text-video-medium{
    font-size: small;
    text-shadow: 0.1em 0.1em 0.2em black
}
video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 992px){
    .video-1-content{
        padding-top: 0;
    }
    .text-big{
        font-size: 20px;
        font-weight: bolder;
    }
    .text-video-medium{
        font-size: 15px;
    }
}