/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html{
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    height: 100vh;
    margin: 0;
}

a {
    text-decoration: none;
    color: #f39520;
}

a:hover {
    color: #f39520;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dosis", sans-serif;
    margin-top: 0;
}

p{
    margin-top: 0;
}

.colore-primario{
    color: #f39520;
}

.colore-secondario{
    color: #105fb6;
}

/*--------------------------------------------------------------
# Risultati Page
--------------------------------------------------------------*/

.risultati-page{
    width: 100%;
    height: calc(100% - 120px);
    padding: 60px 0;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    background: #f9f9f9;
    color: #444444;
    font-family: "Dosis", sans-serif;    
}

.risultati-page h2{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #105fb6;
}

.risultati-page p{
    font-size: 1.2rem;
}

.risultati-page p:last-of-type{
    margin-bottom: 2rem;
}

.risultati-page .bottone{
    background: #f39520;
    width: fit-content;
    display: block;
    color: #f9f9f9;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 28px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 2px solid #f39520;
}

.risultati-page .bottone:hover{
    background: transparent;
    color: #444444;
}