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

html, body {
    margin: 0;
    padding: 0;
}

a {
    color: #c51a1b;
    font-weight: bold;
    cursor: pointer;
    outline: 0 none;
    transition: color 0.2s ease-in 0s;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

a:hover {
    color: #333;
}

.ragione-sociale {
    color: #c51a1b;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 30px;
}

.indirizzo {
    color: #878786;
}

.copyright {
    color: #878786;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #d8d8d8;
    padding: 1px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
    line-height: 14px;
}

.copyright a {
    color: #878786;
}

.copyright a:hover {
    color: #333;
}

.footer {
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    position: fixed;
    bottom: 50px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.logo {
    width: 100%;
    text-align: center;
    margin-top: 100px;
}

.logo img {
    width: 10%;
    min-width: 120px;
}

@media only screen and (max-height : 620px) { 

    .footer {
        position: relative;
        bottom: 0px;
        padding-bottom: 50px;
        padding-top: 50px;
    }
    
 }
