* {
    font-family: "Poppins", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

.navbar2 {
    position: relative;
    background-color: blue;
    padding-top: 3%;
    padding-left: 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.contenitore-logo {
    flex-basis: 20%;
    text-align: center;
}

.contenitore-menu {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
}

.contenitore-bottone {
    flex-basis: 20%;
    text-align: center;
}

.logo {
    width: 50%;
}

a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 1rem;
}

.preventivo {
    color: black;
    background-color: #f1f1f1;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 1rem;
}

button {
    color: black;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 5px 10px;
    text-decoration: none;
    border: 5px;
}

header {
    background-color: blue;
    padding-top: 5%;
    padding-bottom: 10%;
    text-align: center;
}

header > h1 {
    color: white;
    font-family: "Staatliches";
    font-size: 5rem;
    font-weight: 500;
    text-align: center;
}

header > h2 {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 300;
    font-style: italic;
}

.contenitore-bottone-mobile {
    display: none;
}

@media (max-width:1277px) {
    .navbar2 {
        padding: 5% 5% 3% 5%;
    }

    .contenitore-logo {
        flex-basis: 40% !important;
    }

    .contenitore-logo .logo {
        display: none;
    }

    .link-logo-desktop {
        display: none;
    }

    .contenitore-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 999;
        padding: 20px 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .contenitore-menu a {
        color: blue;
        font-size: 1.2rem;
    }

    .contenitore-menu.open {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
    }

    .menu-toggle {
        display: flex;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .contenitore-bottone {
        display: none;
    }

    .contenitore-bottone-mobile {
        display: block;
    }

    .preventivo {
        padding: 10px;
        background-color: blue;
        color: white !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header {
        padding: 15% 0 15% 0 !important;
    }

    header>h1 {
        font-size: 3rem !important;
        padding: 0 5% 0 5%;
    }

    header>h2 {
        font-size: 1.5rem !important;
        padding: 0 5% 0 5%;

    }
}

@media (min-width:1278px) {
    .contenitore-logo .logo-mobile {
        display: none;
    }
}