/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* OZADJE */
body {
    text-align: center;
	font-family:  Arial, sans-serif;
    background-color: #e6f4ff;
    min-height: 100vh;
	align-items: center
	
}

/* NAVBAR */
.navbar {
    width: 100%;
    background-color: #1e90ff;
    padding: 20px 0;
}

.navbar ul {
    list-style: none;
	
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 8px 15px;
    transition: 0.3s;
    border-radius: 8px;
}

.navbar a:hover {
    background-color: white;
    color: #1e90ff;
}

/* GLAVNA VSEBINA */
main {
    margin-top: 60px;
    display: flex;
    justify-content: center;
	text-align: center;
}

/* CONTAINER ZA VSEBINO */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;   /* sredina */
    text-align: center;
    gap: 25px;
}

/* NASLOV */
.content h1 {
    font-size: 36px;
    color: #1e3a5f;
}

/* SLIKE */
.content img {
    max-width: 300px;
    width: 100%;
}

/* CONTAINER ZA GUMBE */
.buttons {
    display: flex;
    gap: 20px; /* razmik med gumbi */
}

/* GUMB */
.btn {
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    background-color: #1e90ff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #0066cc;
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.buttons {
    background: green;
}
