
/* Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
/* Stile Sito */

    body {
        background: linear-gradient(45deg, #8500ff, #5acaff);
        height: 100vh;
    }

/* Palette colore */

    .colore-nero {
        color: #000000;
    }
    .colore-grigio-scuro {
        color: #1f1f1f;
    }

    .colore-grigio {
        color: #7d7f8c;
    }
    .colore-grigio75 {
        color: rgba(125, 127, 140, 0.75);
    }
    .colore-grigio50 {
        color: rgba(125, 127, 140, 0.5);
    }
    .colore-grigio25 {
        color: rgba(125, 127, 140, 0.25);
    }
    .colore-ocra {
        color: #ac904b;
    }
    .colore-ocra75 {
        color: rgba(172, 144, 75, 0.75);
    }
    .colore-ocra50 {
        color: rgba(172, 144, 75, 0.5);
    }
    .colore-ocra25 {
        color: rgba(172, 144, 75, 0.25);
    }
    .colore-azzurro {
        color: #9fdee5;
    }
    .colore-azzurro75 {
        color: rgba(159, 222, 229, 0.75);
    }
    .colore-azzurro50 {
        color: rgba(159, 222, 229, 0.5);
    }
    .colore-azzurro25 {
        color: rgba(159, 222, 229, 0.25);
    }
    .colore-bianco {
    color: #f5f5f5;
    }

    /* SCSS RGB
    $black: rgba(0, 0, 0, 1);
    $roman-silver: rgba(125, 127, 140, 1);
    $metallic-sunburst: rgba(172, 144, 75, 1);
    $blizzard-blue: rgba(159, 222, 229, 1);
    $cultured: rgba(245, 245, 245, 1);
    */

#container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../../img/error404.png), #1f1f1f;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
}
#container .content {
    text-align: center;
}
#container .content h2 {
    font-size: 18vw;
    color: #f5f5f5;
    line-height: 1em;
}
#container .content h4 {
    position: relative;
    font-size: 1.5em;
    margin-bottom: 1.25rem;
    color: #111;
    background: #f5f5f5;
    font-weight: 300;
    padding: 0.6rem 1.2rem;
    display: inline-block;
}
#container .content p {
    color: #f5f5f5;
    font-size: 1.2em;
}
#container .content a {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    color:#ac904b;
    text-decoration: none;
    margin-top: 1.5rem;
    border-radius: 1.5rem;
    border-bottom: 4px solid #53dbea;
    background: #9fdee5;
    transition: 0.8s;
}
#container .content a:hover {
    transform: scale(1.2);
}
