* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100vh;

    background-color: rgb(15, 15, 15);
    background-image: url("/images/mark-eder-T_gAmymcQFs-unsplash.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #787777;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
    position: relative;
    z-index: 2;
    animation: fadeIn 5s;
}

.fog-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.fog-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    0% {
        scale: 1.15;
        opacity: 0;
    }

    100% {
        scale: 1;
        opacity: 1;
    }
}