body{
    background-color: rgb(35, 35, 35);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, 'SF Pro', 'SF UI Display', 'SF UI Text', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.softwares{
    display: flex;
    flex-wrap: wrap;
}
.softwares a{
    padding-top: 50px;
    padding-right: 25px;
    padding-left: 10px;
    font-size: 20px;
}
a{
    text-decoration: none;
}

.note{
    text-align: center;
    margin: 0 120px 0 120px;
    border: darkred solid 5px;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
}
.navbar {
    width: 100%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    box-sizing: border-box;
    margin-bottom: 18px;
    border-bottom: 2px solid #0f0;
}

.navbar-logo img {
    height: 40px;
    vertical-align: middle;
}

.navbar-links {
    display: flex;
    gap: 24px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #0f0;
}
/* Stile del pulsante del dropdown */
.dropbtn {
    background: none;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
    padding: 10px 18px;
    margin: 0;
    transition: 
        color 0.2s,
        background 0.2s,
        box-shadow 0.2s,
        text-shadow 0.2s;
    box-shadow: none;
    text-shadow: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
}
.dropbtn:hover,
.navbar-links a.dropbtn:hover {
    color: rgb(20, 195, 20);
    background: rgba(20,195,20,0.07);
    box-shadow: 0 0 5px rgb(20, 195, 20, 0.15);
    text-shadow: 0 0 5px rgb(20, 195, 20, 0.2);
}
  
  /* Dropdown container */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Contenuto del dropdown (i link) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(55, 55, 55);
    color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    text-align: center;
}

.dropdown-content img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.dropdown-content a:hover {
    background-color: rgb(40, 40, 40);
}
  
  /* Stile dei link nel dropdown */
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    padding-bottom: 25px;
  }
  .dropdown-content img{
    width: 50px;
    height: 50px;
    padding-right: 10px;
  }
  
  /* Stile hover per i link */
  .dropdown-content a:hover {
    background-color: rgb(40, 40, 40);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s, color 0.2s;
  }
  
  /* Mostra il contenuto del dropdown al passaggio del mouse */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Cambia il colore del pulsante al passaggio del mouse */
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }

header{
  align-items: left;
  justify-content: left;
  display: flex;
  flex-direction: left;
}

.text-block{
  background-color: rgb(55, 55, 55);
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.text-block h2{
  text-align: center;
}

.text-block ul{
  list-style-type: circle;
  padding-left: 20px;
  font-size: 20px;
}
.text-block li{
  margin-bottom: 15px;
}

.down-button{
  background-color: rgb(20, 195, 20);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.down-button:hover {
  background-color: #28e028;
  box-shadow: 0 2px 8px rgb(40, 224, 40);
}

strong{
  color: blue;
}

.img-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.img-group img{
  width: 30%;
  height: auto;
}

footer{
  text-align: right;
}

.card-container, .card_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px; /* spazio tra le card */
  text-align: center;
}

.card {
  background-color: rgb(55, 55, 55);
  padding: 20px;
  border-radius: 10px;
  margin: 12px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-logo{
  width: 100px;
  height: auto;
  border-radius: 10px;
}