:root {
    --Grey-900: #141414;  
    --Grey-800: #1F1F1F;  
    --Grey-700: #333333;  
    --Green: #28d1d4;  
    --White: #ffffff;
}

body {
    background-color: var(--Grey-900);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.card {
    background-color: var(--Grey-800);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    width: 327px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-bottom: 1px;
}

.card h2, .card p {
    color: var(--White);
    font-family: 'Inter', sans-serif;
}

.card .location {
    color: var(--Green);
    font-weight: bold;
}

.card h2 {
    /* απόσταση πάνω και κάτω */
    margin: 4px 0; 
}

.card p {
    /* απόσταση πάνω και κάτω */
    margin: 4px 10; 
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn {
    width: 304px;
    height: 45px;
    background-color: var(--Grey-700);
    color: var(--White);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--Green);
    color: var(--Grey-800);
}


  