/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    overflow: hidden;
}
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    color: #e0e0e0;
}
.link {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.link:hover {
    color: #ffffff;
}
.corner {
    position: fixed;
    color: white;
    font-size: 1rem;
    font-weight: bold;
}
.top-left {
    top: 5vh;
    left: 5vw;
}
.top-left img {
    height: 60px;
}
.top-right {
    top: 5vh;
    right: 5vw;
}
.bottom-right {
    bottom: 5vh;
    right: 5vw;
}
.bottom-left {
    bottom: 5vh;
    left: 5vw;
}
.bottom-left img {
    height: 35px;
    filter: invert(1);
}
.corner a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.corner a:hover {
    color: #bbbbbb;
}
