/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333; 
    color: white;
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    color: #f39c12; /* CHhange the color of the hover*/
}


.logo.active {
    color: rgb(252, 87, 87);
}
/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12; /* Highlight color */
}
.nav-links a.active {
    color: rgb(252, 87, 87);
    font-weight: bold;
}

#projekts {
    background-color: #f70000; /* Light gray background */
    padding: 20px;
    text-align: center;

}
