html, body {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    background: url('https://www.redactedhq.org/socials/RS_Website_Background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
  }

.hero {
    padding: 50px 10px;
}


.team-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.team-card {
    background: linear-gradient(135deg, #1f1f1f, #292929);
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-card h3 {
    color: #ff4757;
    font-size: 22px;
    margin-bottom: 10px;
}


.footer {
    background: #111;
    background-color: #111;
    text-align: center;
    font-size: 14px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}


.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff4757;
}
