*{
    padding: 0;
    margin: 0;
}
body{
    background: linear-gradient(to right,midnightblue 15%,rgba(0, 255, 255, 0.663) 65% );
    font-family: "Rakkas", sans-serif;
    color: black;
}
h1{
    font-family: "Nabla", sans-serif;
}
.menu-icon{
    width: 60px;
    height: 60px;
    margin-right: 30px;
    transition: outline 0.7s, border-radius 0.3s, transform 0.7s;
}
.menu-icon:hover{
    outline: 1px solid deepskyblue;
    border-radius: 10px;
    transform: scale(1.13);
}
.navbar{
    display: flex;
    padding: 10px 30px;
}
.navbarli{
    padding: 20px 40px;
    gap: 70px;
    list-style: none;
    display: flex;
}
.navbar a{
    text-decoration: none;
    color:black;
    background-color: deepskyblue;
    border: 2px solid black;
    border-radius: 15px;
    padding: 10px;
    transition: color 0.7s, background-color 0.7s ;
}
.navbar a:hover{
    color: white;
    background-color: black;
}
.attuale a{
    color: white;
    background-color: black;
}
header{
    background-color: aliceblue;
    height: 80px;
    max-height: 100px;
}
.titolo{
    text-align: center;
    margin: 10px 0 0 0;
}
table{
    text-shadow: -1px -1px 0 black, 1px -1px 0 black,
    -1px 1px 0 black, 1px 1px 0 black;
    background-color: deepskyblue;
    min-width: 300px;
    min-height: 300px;
    width: 500px;
    height: 400px;
    color: white;
    text-align: center;
    margin: 30px auto;
    border-collapse: collapse;
}
td{
    padding: 20px;
    border: 3px solid black;
}
th{
    padding: 40px;
    border: 3px solid black;
}
.squadra{
    box-sizing: border-box;
    width: 40%;
    height: 400px;
    margin: 0 20px;
    padding:10px 10px;
    text-align: center;
    background-color: white;
    outline: 3px solid deepskyblue;
    border-radius: 20px;
    transition: transform 0.5s;
    
}
.squadra:hover{

    outline: 4px dashed black;
    transform: scale(1.05);
}
#squadre{
    display: flex;
    width: 100%;
    height: 1000px;
    flex-wrap: wrap;
    justify-content: center;
}
.ema{
    background-image: url("images/zuema.png") ;
    background-size: 37% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.ciccio{
    background-image: url("images/cecciu2.png") ;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.miche{
    background-image: url("images/miche.png") ;
    background-size: 45% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.melo{
    background-image: url("images/carmelo.png") ;
    background-size: 43% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.bold{
    font-weight: 800;
}