48 lines
838 B
CSS
48 lines
838 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
|
|
|
|
#bg-video {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
object-fit: cover;
|
|
z-index: -1;
|
|
}
|
|
|
|
#video-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
backdrop-filter: blur(10px);
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
z-index: -1;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Inconsolata", monospace;
|
|
color: white;
|
|
position: relative;
|
|
}
|
|
|
|
#content > * {
|
|
margin: 3;
|
|
}
|
|
|
|
#content {
|
|
position: relative;
|
|
z-index: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
text-align: center;
|
|
background: transparent;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|