* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #eee5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profil{
    background-color: #fff;
    width: 550px;
    padding: 23px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    border: 3px solid rgb(0, 0, 0);
}


.profilnaslika {
    width: 200px;
    height: 190px;
    border-radius: 60%;
    margin-bottom: 10px;
    border: 3px solid rgb(0, 0, 0);
}


.informacije h1 {
    font-size: 34px;
    color: #241f1f;
    margin-bottom: 20px;
}

.informacije .opis{
    font-size: 18px;
    color: #777;
    margin-bottom: 10px;
}

.informacije .bio {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.informacije .contact {
    font-size: 14px;
    color: #476ec4;
}

.informacije .contact strong {
    color: #4e3e4e;
}
.contact a:hover{
    color: #a11996;
}