
    @font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-style: normal;
}

 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
         font-family: 'DMSans';
    }

    body {
        width: 100vw;
        height: 100vh;
        background: url("../images/16.png") center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0rem;
        color: #fff;
        text-align: center;
        position: relative;
    }

    /* Overlay for readability */
    body::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 0;
    }

    .content {
        position: relative;
        z-index: 2;
        max-width: 90%;
    }

    .row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .logo {
        width: 22rem;
        max-width: 35vw;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }



    .btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        font-weight: bold;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        width: 8rem;
    }

    .yes { background: #fff; color: #000;     margin: 0.5rem;}
    .no { background: #fff; color: #000;     margin: 0.5rem;}

    /* Privacy Policy */
    .privacy {
        position: absolute;
        bottom: 2vh;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        color: #ddd;
        z-index: 2;
    }

    /* Responsive Text */
    @media (max-width: 600px) {
        h1 { font-size: 1.6rem; }
         .logo {
        max-width: 75vw;
    }
        .btn { width: 7rem; font-size: 1rem; }
        .row { gap: 1.5rem; }

            .button {
        width: 76vw;
    }
    }