html, body {
    height: 100%;
    margin: 0;
    background-color: #1a1a1a; /* Dark fallback color */
}

body {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    background-image: url('https://via.placeholder.com/1920x1080/1a1a1a/FFFFFF?text=Valorant+Background'); /* Placeholder for a dark Valorant background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensures background covers entire viewport */
    color: white;
}

.button-container {
    margin-bottom: 20px;
}

button {
    background-color: #ff4655;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e03c4a;
}

#team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto; /* Center the container and add some margin */
    max-width: 90%; /* Limit width for better readability */
}

.agent {
    text-align: center;
}

.agent img {
    width: 100px;
    height: 100px;
    border: 2px solid #ff4655;
    border-radius: 50%;
}

.agent p {
    margin-top: 10px;
    font-weight: bold;
}
