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

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f4f4f4;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        h1 {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            padding: 20px 0;
        }

        h2 {
            font-size: 2rem;
            color: #333;
            padding-bottom: 10px;
        }

        p {
            font-size: 1.1rem;
        }

        .skills,
        .projects {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-gap: 20px;
            margin-top: 20px;
        }

        .skill-item,
        .project-item {
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .skill-item h3,
        .project-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        img {
            max-width: 100%;
            height: auto;
        }
 .about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about {
    margin-bottom: 4rem; /* Dodajte donji margine na sekciju "O meni" */
}
.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-picture {
        width: 100px;
        height: 100px;
    }
}
.skills-experience h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-experience i {
    font-size: 1.5rem;
    color: #FFD700; /* Zlatna boja za trofej */
}
/* ... */
.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(30, 30, 100, 0.8); /* Tamno plava */
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    z-index: 1000;
}

.fixed-footer a {
    color: #fff;
    text-decoration: none;
}
/* ... */
.home-link-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

.home-link {
    color: #0077CC;
    text-decoration: none;
    font-size: 1.5rem;
}

.home-link:hover {
    color: #005299;
}
/* ... */