@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

a {
    font-size: inherit;
    color: inherit;
}

::selection {
    color: inherit;
    background-color: #00000030;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    background-image: url(../images/site_yellow_background-min.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrapper {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 98vh;
    box-sizing: border-box;
}

.container {
    margin: 0.5em auto;
}

.banner {
    text-align: center;
    background-color: white;
    padding: 20px;
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
    border-radius: 15px;
}

.container h1, .container h2 {
    font-size: 1.8em;
    letter-spacing: 1px;
}

.links {
    text-align: center;
}

.links h1, .links h2 {
    max-width: 500px;
    font-size: 1.5em;
    text-align: center;
    margin: auto;
}

.links p {
    font-size: 1.1em;
    max-width: 500px;
    margin: auto;
    margin-bottom: 10px;
}

.links p.desc {
    text-align: justify;
}

.links ul {
    list-style-type: none;
    padding: 10px;
    text-align: center;
    display: inline-grid;
    grid-gap: 15px;
}
.links ul li {
}
.links ul li a {
    background-color: white;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: 0.4s;
    border: 3px solid transparent;
}
.links ul li a:hover {
    /*text-decoration: underline;*/
    transform: scale(1.2);
    box-shadow: 2px 3px 16px 2px #00000070;
}
.links ul li a.to:hover {
    border-color: blue;
}
.links ul li a.tutto50:hover {
    border-color: red;
}
.links ul li a.qs:hover {
    border-color: green;
}
.links ul li a img {
    width: 40px;
    border-radius: 50%;
    transform: scale(1.4);
}
.links ul li a span {
    padding: 10px 0;
    padding-right: 20px;
}

.banner-image {
    width: 28em;
    text-align: center;
}

.nobreak {
    word-break: keep-all;
    display: block;
}

@media only screen and (max-width: 700px) {
    .wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }

    .container {
        width: 100%;
        box-sizing: border-box;
    }

    .banner {
        padding: 15px 30px;
        padding-top: 30px;
    }

    .banner-image {
        width: 100%;
        box-sizing: border-box;
    }

    .links p {
        max-width: none;
        margin-left: 20px;
        margin-right: 20px;
    }
}