body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(53, 52, 52);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
}

/* pfp img */
.pfp-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* name */ 
.name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

/* cards container */ 
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* card */
.card {
    flex: 1 1 calc(50% - 20px);
    max-width: 300px;
    padding: 15px;
    background-color: #9407db;
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/*.card-description {
    font-size: 14px;
    margin: 5px 0 0;
}*/