* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #887b7b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.profilna {
    background-color: rgb(179, 165, 165);
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    text-align: center;
}


.profilna-slika {
    width: 100px;
    height: 100px;
    border-radius: 70%;
    object-fit: cover;
    margin-bottom: 15px;
}


h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.posao {
    font-size: 18px;
    color: #b93636;
    margin-bottom: 20px;
}


.contact p {
    font-size: 14px;
    color: #2b2929;
    margin-bottom: 10px;
}


.bio {
    font-size: 14px;
    color: #333;
    margin-top: 15px;
    line-height: 1.6;
}


.profilna:hover {
    transform: scale(2);
    transition: transform 1s ease;
   background-color: rgb(88, 109, 180);
}
