50 lines
788 B
CSS
50 lines
788 B
CSS
.bgvideo {
|
|
height: 80vh;
|
|
width: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.bgvideo video {
|
|
height: 80vh;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
object-fit: cover;
|
|
z-index: 1;
|
|
}
|
|
|
|
.effect {
|
|
height: 80vh;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
object-fit: cover;
|
|
z-index: 2;
|
|
background-color: rgba(0, 0, 0, 0.412);
|
|
}
|
|
|
|
.video-text {
|
|
color:rgba(232, 232, 232, 0.484);
|
|
/* filter: blur(1px); */
|
|
filter: drop-shadow(5px 5px 10px #c9c9c9);
|
|
z-index: 2;
|
|
}
|
|
|
|
.hello-anim {
|
|
animation: helloAnim 10s linear 0s 1 normal forwards;
|
|
}
|
|
|
|
@keyframes helloAnim {
|
|
0% {
|
|
transform: scale(0.1);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
} |