body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.box {
    background-color: #f0aeae;
    width: 350px;
    padding: 20px;
    margin: auto;
    border: 2px solid #ffb6c1;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

#ime {
    color: #ff1493;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.box p {
    color: #333;
    font-size: 1rem;
    margin: 5px 0;
}

.box b {
    color: #ff69b4;
}

a {
    text-decoration: none;
    color: #ff1493;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

img{
    width: 150px;
    height: 200px;
}