body {
    font-family: 'Roboto', sans-serif;;
    color: black;
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: lightgrey;
    padding: 20px;
    border-radius: 10px
}

.overlay h1 {
  color: Blue;
    margin: 0;
}

.overlay h3 {
    color: Blue;
    margin-top: 10px;
}

main {
    width: 80%;
    height: auto;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
}
table {
    border-collapse: collapse;
    margin: 20px auto;
    width: 70%;
}

td {
    border: 1px solid pink;
    background-color: grey;
    padding: 15px;
    color: black;
}

a {
    color:  black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.linkFinali {
    list-style-type: square;
    margin-top: 50px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    color: #ccc;
    font-size: 0.9em;
}