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: #b5dffa;
    width: 600px;
    height: 200px;
    padding: 20px;
    margin: 20px;
    border: 2px solid #0e3d50;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 
}

.box div {
    margin-top: 200px;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

#ime {
    color: #4d3f3f;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.box p {
    color: #5a5656;
    font-size: 1rem;
    margin: 5px 0;
}

.box b {
    color: #ff69b4;
}

a {
    text-decoration: none;
    color: #fab7db;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

img{
    width: 100px;
    height: 100px;
}

button{
    border: #0e3d50;
    color: #0e3d50 ;
}