
body{
    padding: 0;
    margin: 0;
}
*{
    padding: 0;
}
table{
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.tabella{
    width: 100%;
}

/*alterna le riche della tabella con uno sfondo verde*/
tr:nth-child(even){
    background-color: #d0deda;
}

/*alterna le riche della tabella con uno sfondo bianco*/
tr:nth-child(odd){
    background-color: white;
    padding: 15px;
}

tr:first-child{
    background-color: #175b49;
    color: white;
    text-transform: uppercase;
}

td:first-child{
    width: 5%;
}

td:nth-child(2){
    width: 10%;
}

td:nth-child(3){
    width: 10%;
}

td:nth-child(4){
    width: 7%;
}

td:nth-child(5){
    width: 7%;
}

td:nth-child(6){
    width: 7%;
}

td:nth-child(7){
    width: 54%;
}
td{
    padding: 10px;
    font-size: 20px;
}

.footer .left{
  
  background-color: #175b49;
  height: 100%;
  color: white;
  float: left;
  width: 50%;
  padding: 0;
}
.footer .right{
  
  background-color: #175b49;
  height: 100%;
  color: white;
    float: right;
    width: 50%;
    padding: 0;
}

.footer .right h1{
    color: white;
    text-align: center;
    margin-top: 0px;
}
.footer{
  background-color: #175b49;
  height: 150px;
}

img{
  height: 100%;
}

@media screen and (max-width: 800px) {
    tr{
        width: 100px;
    }


}