/* styles.css */

/* Reset CSS */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* General styling */
body {
    background-color: #f7f7f7;
    color: #030303;
}

header {
    background-color: #f7f7f7;
    color: #030303;
    padding: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 100px;
}
.logo img {
    max-width: 250px;
    max-height: 140px;
    padding: 100px;
    margin-left: -100px; 
}
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #030303;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

footer {
    background-color: #f7f7f7;
    color: #030303;
    padding: 20px;
    text-align: center;
}

/* Styling for About Us section */
.about-us-section {
    text-align: center;
    padding: 50px 20px;
}

.about-us-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-us-content img {
    max-width: 100%;
    height: auto;
    margin-top: 20px; /* Dodamo malo prostora med besedilom in sliko */
}