body {
    font-family: serif;
    color: rgb(31, 43, 12);
    background-image: url('public/images/fiori_02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.box {
    text-align: center;
    background-color: rgba(250, 249, 236, 0.80);
    border-radius: 10px;
    padding: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 10px rgb(31, 43, 12);
}

.footer {
    text-align: center;
    color:rgb(250, 249, 236);
    text-shadow: 0 0 10px rgb(250, 249, 236);
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

a:link {color: rgb(31, 43, 12);}

a:visited {color: rgb(31, 43, 12);}

a:hover {color: rgb(31, 43, 12);}

a:active {color: rgb(31, 43, 12);} 

.grid-container {
    display: grid;
    grid-template-columns: 20% auto 20%;
    gap: 10px;
}

.grid-container > div {
    background-color: rgba(250, 249, 236, 0.50);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    align-content: center;
    box-shadow: 3px 3px 6px rgb(31, 43, 12);
}