main {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 100px;
    width: 65%;
}

main h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

main p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contributors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.contributor {
    border: 0.5px solid rgba(68, 68, 68, 0.65);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contributor:hover {
    transform: scale(1.05);
}

.contributor img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 0.5px solid rgba(68, 68, 68, 0.65);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contributor .username {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contributor .title {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contributor .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.contributor .buttons a {
    background-color: white;
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contributor .buttons a:hover {
    transform: scale(1.05);
    background-color: var(--primary-color);
}

.contributor .buttons a:active {
    transform: scale(0.95);
}

.contributor .buttons a svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    fill: #000;
}