@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: Open-Sans, sans-serif;
    line-height: 1.5;
}
.container{
    width: 100%;
}
.showcase{
    width: 100%;
    height: 100%;
}
.showcase__video:after {
    background-color: rgb(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
}
video {
    width: 100%;
    height: 100%;
}
.showcase__text-section{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
   
    
}
h1 {
    font-size: 4rem;
    font-weight: 200;
    color: white;
}
h6 {
   font-size: 1.5rem;
   font-weight: 100;
   margin-bottom: 1rem;
   color: white;
}
button {
    padding: 1rem;
    color: black;
}
