* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;

}

.nav-links {
    background-color: white;
    position: relative;
    top: 10px;
    left: 10px;

}

.nav-links ul li {
    list-style-type: none;
    transition: all 3s;
}

.nav-links ul li a{
       color: black;
       font-family: 'Inter', sans-serif;
       margin-right: 20px;
       font-size: 2em;
       transition: 0.5s all;

}


.nav-links ul li a:hover {
    transform: scale(1.05);
}
.menu-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    transition: 1s all;
}
.menu-hamburger:hover {
    transform: rotate(720deg);
}

.button {
    border: none;
    border-radius: 5px;
    padding: 5px;
    font-family: 'Inter', sans-serif;
    width: 100px;
    height: 50px;
    color: white;
    background: linear-gradient(to right, blue, pink);
    transition: all 0.5s!important;
    
}
.button:hover {
    background: linear-gradient(to left, red, white)!important;
}

.border {
    border: 0.5px grey solid;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    padding-left: 10px;
}

.welcome h1 {
    text-align: center;
    padding-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 3em;
    border: 1px black solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-bottom: 10px;
    transition: all 0.5s;
    color: black;
    

   }
.wlc {
    margin-top: 20px;
}
   .welcome h1:hover {
    background: linear-gradient(to right, blue, pink);
    color: white;
    transform: scale(1.1);
   }

   .imgprincipale {
    background-image: url(media/OIP\ \(6\).jfif);
    width: 100%;
    height: 50vh;
    background-repeat: no-repeat;
   }
.website {
    font-family: 'Bebas Neue', cursive;
    text-align: center;
    font-size: 5em;
    margin-top: 50px;
}
.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
  }
.button2 {
    border: none;
    border-radius: 5px;
    padding: 5px;
    font-family: 'Inter', sans-serif;
    width: 200px;
    height: 200px;
    color: white;
    background: linear-gradient(to right, blue, pink);
    transition: all 0.5s!important;
    margin-left: 100px;
}
.button2:hover {
    background-image: url(media/2022-08-22.png);
    width: 300px;
    background-size: 300px;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.button3 {
    border: none;
    border-radius: 5px;
    padding: 5px;
    font-family: 'Inter', sans-serif;
    width: 200px;
    height: 200px;
    color: white;
    background: linear-gradient(to right, blue, pink);
    transition: all 0.5s!important;
    margin-left: 100px;
    margin-bottom: 40px;
}
.button3:hover {
    background-image: url(media/2022-08-22\ \(1\).png);
    width: 300px;
    background-size: 300px;
    background-repeat: no-repeat;
    border-radius: 5px;
}
.button4 {
    border: none;
    border-radius: 5px;
    padding: 5px;
    font-family: 'Inter', sans-serif;
    width: 200px;
    height: 200px;
    color: white;
    background: linear-gradient(to right, blue, pink);
    transition: all 0.5s!important;
    margin-left: 100px;
    margin-bottom: 40px;
}
.button4:hover {
    background-image: url(media/2022-08-22\ \(2\).png);
    width: 300px;
    background-size: 300px;
    background-repeat: no-repeat;
    border-radius: 5px;
}
@media screen and (max-width:900px) {
    .nav-links {
        font-family: 'Inter', sans-serif;
        position: absolute;
        text-align: left;
        margin-left: 10px;
        width: 100%;
        height: 100%;
        margin-left: -100%;
        margin-top: 50px;
        transition: all 0.5s;

    }
    .nav-links ul li {
        border: 1px grey solid;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        padding-bottom: 20px;

    }
    .smj {
        text-align: center;
    }

    .mobile-menu {
        margin-left: -10px;
    }

    .nav-links ul li a {
       display: flex;
       flex-direction: column; 
       margin-bottom: 20px;
    }
    .menu-hamburger {
        display: block;
    }


   .border {
    display: none;
    border: none;
   }

   .button {
    margin-left: 10px;
   }
.button2 {
    margin-bottom: 50px;
}
   .wrapper {
    display: block;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
  }

}