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

body {

    font-family: roboto, sans-serif;
background-color: black;

}



.home {
  z-index: 0;
    height: 100vh;
    position: relative;
}
video {

    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-content {
z-index: 0;
    position: relative;
    padding-top: 150px;
    color: #fff;
    text-align: center;
}

#video-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 50px black;
}

@media (max-width: 768px) {
  #video-border {
        box-shadow: inset 0 0 0 10px black; /* Ancho del borde para pantallas pequeñas */
    }

}
