        body {
            background-color: #000;
            color: white;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        h1, h2 {
            color: yellow;
        }
        .team-container {
            display: flex;
            justify-content: space-around;
            margin: 50px auto;
            flex-wrap: wrap;
        }
        .team {
            width: 30%;
            text-align: center;
            margin-bottom: 50px;
        }
        .team img {
            width: 100%;
            border-radius: 10px;
        }
        .team button {
            background-color: #FFD700;
            color: black;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .team button:hover {
            background-color: #F4A460;
        }