
body {
    font-family: Arial, sans-serif;
    background-color: #9da3a7;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.profilna-kartica {
    background-color: #c3c7c9;
    border: 1px solid #444e7c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
}


.profilna-slika {
    border-radius: 90%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 15px;
}


h1 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}


.opis {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}


.kontakt-info p {
    margin: 5px 0;
    font-size: 0.8em;
    color: #555;
}

.profilna-kartica:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}
