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

    body {
        font-family: 'Courier Prime', monospace;
        background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
        color: #B22222;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 10px;
        overflow: auto;
    }

    .container {
        width: 100%;
        max-width: 1000px;
        background: rgba(0, 0, 0, 0.3);
        padding: 20px;
        border: 2px solid #B22222;
        border-radius: 12px;
        box-shadow: 0 0 20px #B22222;
        text-align: center;
        transition: all 0.3s ease;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 4rem);
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: #FFFFFF;
        transition: all 0.3s ease;
        white-space: nowrap; /* optional to keep one line */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    p {
        font-size: clamp(1rem, 5vw, 2rem);
        text-transform: uppercase;
        color: #D3D3D3;
        transition: all 0.3s ease;
        text-align: center;
        margin-bottom: 1rem;
    }

    .form-frame {
        width: 80%;
        height: 1200px;
        border: none;
        box-shadow: 0 0 10px #B22222;
        max-width: 100%;
        overflow: auto;
        margin-top: 0em;
    }

    iframe {
        width: 100%;
        height: 100%;
        border: none;
    

    }

    @media (max-width: 700px) {
        .form-frame {
            height: 1300px;
            width: 100%;
            margin-top: 0em;
        }

        h1 {
            font-size: clamp(2rem, 10vw, 4rem);
        }

        p {
            font-size: clamp(1rem, 5vw, 2rem);
        }
    }

    .footer {
        margin-top: 15px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }