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

:root {
    --background: #111;
    --primary: ;
    --secondary: ;
    --text: #f3f3f3;
    --text-muted: #848484;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    background-color: var(--background);
}

header {
display: flex;
flex-direction: column;
min-height: 100vh;
text-align: center;
align-items: center;
justify-content: center;

    & h1 {
        margin-top: 400px;
        opacity: 0;
        font-size: 50px;
        margin-bottom: 3rem;
        font-family: sans-serif;
        color: var(--text);
        animation: fadeIn 3s ease forwards;
    }

    & p {
        opacity: 0;
        font-family: sans-serif;
        color: var(--text-muted);
        animation: fadeIn 3s ease forwards;
        animation-delay: 1s;
    }

    & img {
        position: absolute;
        object-fit: cover;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        filter: opacity(0.3);
        mask-image: linear-gradient(to bottom, rgba(16, 25, 34, 1) 5%, rgb(0, 0, 0) 80%);
    }

    & svg {
        opacity: 0;
        margin-top: 30px;
        color: var(--text);
        animation: fadeIn 3s ease forwards;
        animation-delay: 2s;
    }

    & .copy {
        margin-top: auto;
        margin-bottom: 10px;
        font-size: 12px;
        color: var(--text);
    }
}