@charset "utf-8";

/* 
    Colori:
    Primario #273a62
*/

/* Mobile */
@media only screen and (min-width: 0px) {
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
    body {
		font-family: 'Montserrat', sans-serif;
        line-height: 1.6;
	}
    ul, ol {
        list-style: none;
        margin: 0px;
		padding: 0px;
		border: 0px;
    }
    a {
        color: #797979;
        text-decoration: none;
    }
    a:hover {
        color: #4d8b7b;
    }

    /* Torna su */

    .torna-su {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #3c6a5d;
        color: #fff;
        padding: 5px 14px;
        border-radius: 10%;
        text-align: center;
        font-size: 24px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 1000;
        display: none;
        transition: background 0.2s;
    }
    .torna-su:hover {
        background: #4d8b7b;
        color: #fff;
    }
    .torna-su .material-symbols-outlined {
        transform: scale(1.5) translateY(3px);
    }

}

/* Desktop */
@media only screen and (min-width: 769px) {

}