﻿

/* Header e Nav */
.header {
    background-color: #039C14;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    /*background-color: #039C14;*/
    position: fixed !important;
    width: 100%;
}

nav a{
    color: #000000;
}

body {
     margin-bottom: 0px; 
}

.logo {
   
}

    .logo a {
        font-size: 1.8rem;
        font-weight: bold;
        color: #FFFFFF !important;
    }
        .logo a:hover {
            transition: 0.5s;
            transform: scale(1.02);
        }

    .nav-menu {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .nav-menu li {
        display: inline;
    }

.nav-link {
    text-decoration: none;
    color: #00000099 ;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    /*font-weight: bold;*/
}

    .nav-link:hover {
        transition: 0.5s;
        transform: scale(1.05);
        color: #039C14 !important;
        font-weight: bold;
    }

/* Main Content */
.main-content {
    padding: 20px;
    text-align: center;
}

h1 {
    color: #039C14;
}






.fa-brands {
    font-size: 30px;
}