@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("img/sfondo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    min-height: 100vh;
}

.container-centrale-landing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    height: 100%;
}

h1.landing {
    font-size: 3rem;
    text-align: center;
    font-weight: 800;
}

.riga-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.riga-badge .badge {
    height: 60px;
    margin: 15px;
}

.sopratitolo-landing {
    font-size: 1.2rem;
    padding-bottom: 20px;
    letter-spacing: .5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 9999;
}

header .logotipo {
    height: 30px;
}

nav a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    margin-left: 30px;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: auto;
}

.spazia-sopra-pagina {
    margin-top: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    padding-top: 120px;
}

.contatori-admin {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 10px;
}

.contatori-admin > div {
    flex: 1;
}

.contatori-admin b {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    font-family: inherit;
}

.contatori-admin b > * {
    font-family: inherit !important;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
    font-family: 'Syne', sans-serif;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
    width: 22px;
}

.riga-utente {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.riga-utente .nickname {
    font-size: 1.1rem;
}

.griglia-domande {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.box-domanda-admin {
    background-color: white;
}

.box-domanda-admin .anteprima {
    width: 100%;
    filter: invert(0%) sepia(100%) saturate(7500%) hue-rotate(136deg) brightness(0%) contrast(114%);
}

.box-domanda-admin .risposte > div {
    font-size: .7rem;
    text-align: center;
    display: block;
    padding: 5px;
    border: solid 1px black;
    margin: 5px;
    margin-top: 0;
}

.box-domanda-admin .risposte > div.corretta {
    background-color: black;
    color: white;
}
































/* SEZIONE MOBILE */
@media screen and (max-width: 1100px) {

    .riga-badge {
        flex-direction: column;
    }

    .riga-badge .badge {
        height: auto;
        width: 200px;
    }

}

