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

body{
    

    font-family: 'Raleway', sans-serif;


}

header{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

video{
    width: 100%;
}

.absolute{
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items:center;
}

h1{
	font-size: 80px;
	font-weight: 900;
	z-index: 100;
	color: #ff5e14;
	margin-bottom: 30px;
}


.display-9{
	color: #ffffff;
	align-content: center;
	text-align: center;  
}

h1::after{
    display: block;
    width: 30%;
    height: 10px;
    content: "";
    margin: auto;
    background: #fff;
}

.overlay{
    width: 100%;
    height: 100%;
    
    background: rgba(0, 0, 0, 0.575);
}



@media screen and (max-width: 800px){
    h1{
        font-size: 50px;
    }
}

@media screen and (max-width: 500px){
    h1{
        font-size: 30px;
        margin-bottom: 0;
    }

    h1::after{
        display: none;
    }
}