body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg.png");
    background-size: cover;
    filter: blur(4px);
    z-index: -1;
}

body.white::before {
    filter: blur(4px) invert(1);
}

h1 {
    font-size: 35px;
    color: #d5d5d5;
    font-family: "Concert One", sans-serif;
    padding: 25px 0;
}

.heading {
    font-size: 50px;
}

.team-role {
    font-family: "Anta", sans-serif;
}

p {
    font-size: 20px;
    font-family: "Slabo 27px", serif;
    margin-top: 20px;
}

.contributors-container {
    text-align: center;
    margin: 0 auto;
    max-width: 850px;
    padding: 50px 0;
}

.team, .volunteers {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 110px;
}

.member,
.volunteer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
    font-family: "Open Sans", sans-serif;
}

.member-name {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #d5d5d5;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.3s;
}

.badge {
    margin-left: 10px;
    position: relative;
}

.badge i {
    font-size: 18px;
    color: #d5d5d5;
    transition: color 0.3s;
}

.badge:hover i {
    color: #808080;
    transform: scale(1.1);
}

.badge-name {
    font-size: 16px;
    font-weight: bold;
    color: #d5d5d5;
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.badge:hover .badge-name {
    display: block;
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 18px;
    }
}
