@import url("https://fonts.googleapis.com/css?family=Poppins");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.container video{
    height: 100%;
    height: 100%;
}

.text-box{
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 900;
    mix-blend-mode: multiply;
}