2025-01-10 23:04:42 -08:00

63 lines
843 B
CSS

body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100%;
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
gap: 20px;
background-color: #333;
margin: 0;
padding: 10px 20px;
}
nav ul li {
display: inline;
}
nav ul li a {
text-decoration: none;
color: white;
}
nav ul li a:hover {
text-decoration: underline;
}
.home {
position: relative;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: white;
overflow: hidden;
}
.home-content {
position: relative;
z-index: 2;
}
.background-video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: 1;
opacity: 0.8;
}
.page {
padding: 20px;
}