@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf6f8;
    margin: 0;
    color: #2f2f2f;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 30px;
}


nav {
    background-color: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d63384;
}


h1 {
    color: #d63384;
    font-weight: 600;
}

h2 {
    color: #6c5b7b;
    margin-top: 30px;
}


p {
    line-height: 1.7;
    font-size: 15px;
}


img {
    margin-top: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


ul, ol {
    margin-left: 20px;
}


table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

th {
    background-color: #f4c2d7;
    padding: 10px;
    text-align: left;
}

td {
    padding: 10px;
    border-top: 1px solid #eee;
}


form {
    background-color: white;
    padding: 25px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
#ime {
    letter-spacing: 1px;
}


input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit;
}

button {
    background-color: #d63384;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b82c6f;
}
