body {
    background-color: #141414;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
}

.card {
    background-color: #1F1F1F;
    border-radius: 16px;
    padding: 32px;
    width: 320px;
    text-align: center;
    margin: 100px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card img {
    border-radius: 50%;
    width: 96px;
    height: 96px;
    object-fit: cover;
    margin-bottom: 16px;
}

.card h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card .location {
    color: #C4F82A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card .subtitle {
    color: #CCCCCC;
    font-size: 14px;
    margin-bottom: 24px;
}

.button {
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 12px 0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #c3fc1a;
    color: #141414;
}
