@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* BODY */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

strong {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #FFF;
	}

a:hover p {
    color: #CCC;
}

/* HEADER & FOOTER */
header, footer {
    position: fixed;
    width: 100%;
    margin: 0;
    color: #FFF;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    z-index: 1;
}

/* HEADER */
header {
    background-color: rgba(0,0,0,0.7);
}

title_1, title_2 {
    font-size: 1.5rem;
}

title_1 {    
    font-weight: 600;
}

title_2 {    
    font-weight: 200;
}

/* FOOTER */
footer {
    bottom: 0;
    background-color: #000;
    font-size: 75%;
}

/* CENTER */
.container {
    width: 90%;
    margin: 0 auto;
}

.content {
    padding-top: 50px; /* Pour compenser la hauteur du titre */
    padding-bottom: 50px; /* Pour compenser la hauteur du footer */
}

.column {
    max-width: 45%;
    margin-left: auto;
}

.column p {
    padding: 5px;
    background-color: rgba(0,0,0,0.7);
    color: #FFF;
}

/* LOGO UNZA */
.right {
    display: block;
    margin-left: auto;
}

/* RESPONSIVE */
@media screen and (max-width: 1600px) {
    header, footer {
        text-align: center;
    }
        
    .column {    
        max-width: 100%;
    }
    
    .hidden {
        display: none;
    }

    /* CSS pour rendre le contenu visible dans le media screen */
    .hidden.collapsed {
        display: block;
    }
}

/* Cacher le lien "En savoir plus..."*/
@media screen and (min-width: 1600px) {
    #showMore {
        display: none;
    }
}