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

body{
    background:#0f0f0f;
    color:white;
    font-family:Arial,sans-serif;
    overflow-x:hidden;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero video{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:10;
}

.hero-content h1,
.hero-content h2{
    font-size:90px;
    letter-spacing:10px;
    font-weight:200;
}

.hero-btn{
    margin-top:30px;
    border:1px solid white;
    padding:15px 40px;
    color:white;
    text-decoration:none;
}
