* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow: hidden;
    font-family: system-ui, sans-serif;
}

body {
    font-size: clamp(1.5rem, 1.18rem + 1.6vw, 2rem);
    line-height: 1.4;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 3vh;
}

a {
    margin-bottom: 1em;
    color: #fff;
    text-decoration-color: #FF4600;
    text-decoration-thickness: 0.1em;
}

a:hover { 
    color: #FF4600;  
}