body{
    margin:0;
}

html{
    font: 500 17px/1.5 "Ubuntu", sans-serif;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: large;
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.menu li {
    margin: 0;
    padding: 0;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: bold;
}

.testo{
    position: absolute;
    color: white;
    top:30%;
    left:23%;
    font-size:50px;
    text-align: center;
    animation: fadeIn 2s forwards;
}

.testo2 {
    position: absolute;
    color: white;
    top:50%;
    left: 10%;
    right:10%;
    font-size:18px;
    text-align: center;
    animation: fadeIn 2s forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form {
    position: absolute;
    color: white;
    top:80%;
    left: 60%;
    background: #0002;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    text-align: center;
    width: 300px;
    animation: fadeIn 2s forwards;
}
 
button {
    font: inherit;
    background-color: #f0f0f0;
    border: 0;
    color: #242424;
    border-radius: 0.5em;
    font-size: 1.35rem;
    padding: 0.375em 1em;
    font-weight: 600;
    text-shadow: 0 0.0625em 0 #fff;
    box-shadow: inset 0 0.0625em 0 0 #f4f4f4, 0 0.0625em 0 0 #efefef,
      0 0.125em 0 0 #ececec, 0 0.25em 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede,
      0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
    transition: 0.15s ease;
    cursor: pointer;
  }
  button:active {
    translate: 0 0.225em;
    box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef,
      0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede,
      0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;
  }

  .containerFooter {
    background-color: rgb(20, 20, 20);
    padding: 40px 0;
    color: white;
}

@media (max-width:992px){
.footer .second-row-container{
    flex-wrap: wrap;
    }
}

/* Gestione della disposizione delle colonne */
.medium-gap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    margin-left: 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color:rgb(163, 163, 163);
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color:rgb(136, 135, 135);
}

/* Gestione delle icone social */
.social-container {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
    justify-content: center;
}

.social-container li {
    display: inline-block;
}

.social-container a {
    color: white;
    font-size: 28px;
    transition: color 0.3s, transform 0.3s;
}


.social-container a:hover {
    transform: scale(1.1);
}

.footer-column2 a{
    color:rgb(163, 163, 163);
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
    padding: 5px 20px; 
}

.footer-column2 a:hover {
    transform: scale(1.1); 
}


.shortcut-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.shortcut-container img {
    width: 120px; 
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.shortcut-container img:hover {
    transform: scale(1.1);
}


