    body {
        min-height: 100vh;
        width: 100%;
        background:

            url("background.png");
        background-size: cover;
        background-position: center;
        background-color: #f0f0f0;
        margin: 0;
        z-index: -1;

    }

    @media (min-width: 768px) {
        body {
            background-attachment: fixed;
        }
    }

    .content {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;

    }

    .box {
        width: 520px;
        height: 450px;

        backdrop-filter: blur(6px);
        border-radius: 6px;
        display: flex;
        justify-content: center;
        flex-direction: column;


    }

    h1 {
        font-size: 3rem;
        color: #2a2a85;
        text-align: center;
        font-weight: 700;
        margin-top: 30px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    input {
        width: 70%;
        height: 50px;
        align-self: center;
    }

    button {
        margin-top: 10px;
        height: 50px;
        width: 80px;
        align-self: center;
        border-radius: 6px;
        cursor: pointer;
        box-shadow: black;
        background-color: #2a2a85;
        color: white;
    }
    #result{
        text-align: center;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 26px;
        font-weight: bold;
        color: #2a2a85 ;
    }

.win {
    font-size: 28px;
    font-weight: bold;
    }

