/* Zajednički stilovi */
body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
    background-color: #fdf6e3; /* nježna krem boja */
    color: #333;
}

/* Naslov */
h1 {
    text-align: center;
    background-color: #f5deb3; /* bež / bisque ton */
    color: #4b3832;
    padding: 20px;
    margin: 0;
    border-bottom: 2px solid #e6ccb2;
    font-size: 2.2em;
    border-radius: 0 0 12px 12px;
}

/* Paragraf */
p {
    text-align: center;
    background-color: #deb887; /* toplija smeđa nijansa */
    color: #fff;
    padding: 15px;
    margin: 20px auto;
    width: 70%;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}

/* Navigacija ili lista */
ul {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    width: fit-content;
}

ul li {
    background-color: #f5deb3;
    margin: 10px 0;
    padding: 12px 25px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

ul li:hover {
    background-color: #e6ccb2;
    transform: scale(1.05);
}

/* Klasa prvi */
.prvi {
    background-color: #ffe4c4;
    width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 15px;
    font-weight: bold;
    color: #4b3832;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

