* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #121212;
    color: white;
    font-family: Arial, sans-serif;
}

.video-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.overlay-body {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .10);
    z-index: -1;
}

.container {
    width: min(95%, 1800px);
    margin: auto;
}

img {
    max-width: 100%;
}