/* Scrollbars */

:root {
    --color-thumb-scrollbar_top: #F994CF;
    --color-thumb-scrollbar_down: #EB80FE;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 12px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
    background-image: -ms-linear-gradient(top, var(--color-thumb-scrollbar_top) 0%, var(--color-thumb-scrollbar_down) 100%);
    background-image: -moz-linear-gradient(top, var(--color-thumb-scrollbar_top) 0%, var(--color-thumb-scrollbar_down) 100%);
    background-image: -o-linear-gradient(top, var(--color-thumb-scrollbar_top) 0%, var(--color-thumb-scrollbar_down) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--color-thumb-scrollbar_top)), color-stop(100, var(--color-thumb-scrollbar_down)));
    background-image: -webkit-linear-gradient(top, var(--color-thumb-scrollbar_top) 0%, var(--color-thumb-scrollbar_down) 100%);
    background-image: linear-gradient(to bottom, var(--color-thumb-scrollbar_top) 0%, var(--color-thumb-scrollbar_down) 100%);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
    background: #EEE;
    border-radius: 10px;
}

/* Cos */

body
{
    font-family: "Raleway";
    min-height:100vh;
    margin: 0px;
    padding: 0px;
    border: 0px;
    width: 100%;
    height: 100%;
}

.grad
{
    background: #DDD;
    background: -webkit-linear-gradient(white, #DDD);
    background: -o-linear-gradient(white, #DDD);
    background: -moz-linear-gradient(white, #DDD);
    background: linear-gradient(white, #DDD);
}

/* Capçalera */

#banda_capsalera
{
    background-color: #212121;
    width: 100%;
    padding-bottom: 50px;
}

#logo
{
    filter: drop-shadow(0px 0px 5px #888);
    width: 230px;
    margin: auto;
    padding-top: 60px;
    display: block;
}

#titol
{
    font-size: 50px;
    margin-top: 30px;
    text-align: center;
    width: 100%;
    color: white;
    font-family: "Helvetica";
}

#subtitol
{
    font-size: 26px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    color: #CCC;
    font-family: "Raleway";
}

.icona_capsalera_seccio
{
    width: 100%;
    font-size: 140px;
    color: #FFA50B;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 900px) {
    #titol {
        font-size: 32px;
    }
    #subtitol
    {
        font-size: 21px;
    }
    #logo
    {
        width: 170px;
    }
    .icona_capsalera_seccio
    {
        font-size: 100px;
    }
}

/* Footer */

#menu_inferior
{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

#menu_inferior .opcio_menu_inferior
{
    text-decoration: underline;
    display: inline-block;
    padding: 20px;
    font-size: 19px;
    font-family: "RobotoMono";
}

#menu_inferior .opcio_menu_inferior a
{
    color: black;
}

#menu_inferior .opcio_menu_inferior a:hover
{
    color: #C36DCD;
}