/* Reset */

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

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background:
        linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.60)),
        url("bg.webp") center center / cover no-repeat fixed;

    color: #fff;
}

.overlay {
    width: 100%;
    min-height: 100vh;

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

    text-align: center;
    padding: 30px;
}

.content {
    max-width: 800px;
}

.content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.content h2 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.content p {
    font-size: 1.15rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .content h1 {
        margin-bottom: 25px;
    }

    .content h2 {
        margin-bottom: 15px;
    }

    .content p {
        font-size: 1rem;
    }
}