/* ENLLAÇOS */

a:link, a:visited, a:active{
    text-decoration: none;
}

/**********     BODY     **********/
body{
    margin: auto;
    min-width: 320px;
    background-color: #A89CA6;
}


/* TÍTOLS */

.titol_pagina{
    height: 32px;
    padding-top: 5px;
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin: auto;
}



/**********     HEADER     **********/

header{
    background-color: #CCFF00;
    height: 40px;
    display: flex;               /* Activa Flexbox */
    justify-content: center;      /* Centra horizontalmente */
    align-items: center;          /* Centra verticalmente */
}
footer{
    display: flex;               /* Activa Flexbox */
    justify-content: center;      /* Centra horizontalmente */
    align-items: center;          /* Centra verticalmente */
}

/****************************************************************/


/* @MEDIA */

@media screen and (min-width: 1150px){
    
    /* Navegació */
    
    
    /* Títols */
    .titol_pagina{
        height: 64px;
    }
    
    h1{
        font-size: 30px;
    }
    
    header{
        height: 80px;
    }
}