25 lines
357 B
CSS
25 lines
357 B
CSS
/* * {
|
|
box-sizing: border-box !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
} */
|
|
/* #main {
|
|
position: fixed;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
}
|
|
*/
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
width: 100%;
|
|
/* overflow: hidden; */
|
|
}
|
|
video {
|
|
width: 100% !important;
|
|
height: auto !important;
|
|
background-color: black;
|
|
}
|