body {
            margin: 0;
            padding: 0;
            font-family: 'Courier New', Courier, monospace;
            color: #ff0033;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            background: url("teapot.gif");
            background-repeat: round;
        }
        body::before {
            content: "";
            position: fixed;
            top: -20px;
            left: -20px;
            width: calc(100% + 40px);
            height: calc(100% + 40px);
            z-index: -2;
        }
        .blur-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
            backdrop-filter: blur(8px) brightness(0.6);
            -webkit-backdrop-filter: blur(8px) brightness(0.6);
        }
        .container {
            text-align: center;
            padding: 30px;
            max-width: 800px;
            background-color: transparent; /* Remove the dark background */
            border-radius: 12px;
        }
        .logo {
            max-width: 200px;
            margin: 20px 0;
        }
        h1 {
            font-size: 2.8em;
            text-shadow: 0 0 6px #ff0033;
            margin-bottom: 30px;
        }
        .team-members {
            margin: 30px 0;
            font-size: 1.3em;
            display: grid;
            gap: 20px;
        }
        .team-member {
            position: relative;
            padding: 15px;
            border: 2px solid #ff0033;
            box-shadow: 0 0 8px #ff0033;
            background: linear-gradient(45deg, #1a0010, #280014);
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .team-member:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px #cc0033;
        }
        .team-member p {
            margin: 0;
            margin-bottom: 10px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        .social-links a {
            color: #ff0033;
            font-size: 1.2em;
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            color: #cc0033;
            transform: scale(1.2);
        }
        .description {
            margin: 30px 0;
            font-size: 1.1em;
            line-height: 1.6;
            text-shadow: 0 0 2px #990033;
        }
        .contact {
            margin-top: 30px;
            font-size: 1.1em;
        }
        .contact a {
            color: #ff0033;
            text-decoration: none;
        }
        .contact-button {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 25px;
            background: none;
            border: 2px solid #ff0033;
            color: #ff0033;
            font-family: 'Courier New', Courier, monospace;
            font-size: 1em;
            cursor: pointer;
            text-shadow: 0 0 2px #ff0033;
            transition: background 0.3s, color 0.3s, box-shadow 0.3s;
            border-radius: 5px;
        }
        .contact-button:hover {
            background: #cc0033;
            color: #0a0a12;
            box-shadow: 0 0 8px #cc0033;
        }
        footer {
            margin-top: 30px;
            font-size: 0.9em;
            color: #990033;
        }

        @media (max-width: 600px) {
    .container {
        padding: 10px;
        margin: 0 5px;
        max-width: 98vw;
    }
    .logo {
        max-width: 120px;
        margin: 10px 0;
    }
    h1 {
        font-size: 1.5em;
        margin-bottom: 18px;
    }
    .team-members {
        gap: 10px;
        font-size: 1em;
    }
    .team-member {
        padding: 8px;
    }
    .description, .contact {
        margin: 15px 0;
        font-size: 1em;
    }
    footer {
        margin-top: 15px;
        font-size: 0.8em;
    }
}
