/***************/
/*** IMPORTS ***/
/***************/

@font-face {
    font-family: 'GlacialIndifference Regular';
    src: url('fonts/glacial-indifference/GlacialIndifference-Regular.otf') format('truetype');
}
@font-face {
    font-family: 'GlacialIndifference Italic';
    src: url('fonts/glacial-indifference/GlacialIndifference-Italic.otf') format('truetype');
}



/**************/
/* BACKGROUND */
/**************/

body {
    background-color: #111;
    margin: 0;
    padding: 60px;
    padding-bottom: 0px;
    height: calc(100vh - 80px);
}

.layer_wrapper {
    z-index:-1;
    overflow: hidden;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;

}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.75;
    object-fit: cover;
}



/*****************/
/*** ECRITURES ***/
/*****************/

h1 {
    display: block;
    margin: 20px;
    margin-bottom: 0px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 60px;
    font-weight: 100;
    color : #fff;
    text-align: center;
}

label {
    margin: 20px 0px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    display: block;
    padding-top: 5px;
}

p {
    margin: 20px;
    margin-right: 50px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    text-align: justify;
    color: #ffb300;
    opacity: 0.5;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}



/************/
/* SECTIONS */
/************/

header {
    z-index: 2;
    position: relative;
}

main {
    position: relative;
    z-index: 3;
    padding: 20px 0;
}

footer {
    display: block;
    position: relative;
    bottom: -60px;
}



/************/
/*** MAIN ***/
/************/

.panel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    opacity: 0.5;
    border-radius: 20px;
    z-index: -1;
}

.panel {
    padding: 20px;
    margin: 100px auto;
    position: relative;
    border-radius: 20px;
    width: 800px;
}

.items-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    padding: 0;
}

.item {
    /*background-color: #ff7f7f;*/
    /*border: 1px solid #000;*/
    text-align: center;
    margin: auto;
    width: 150px;
    padding: 20px;
}

svg {
    height: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    transition: transform 0.3s ease; 
    z-index: 5;
} svg:hover {
    transform: scale(1.2);
    filter: brightness(200%);
    cursor: pointer;
}
  




/*** centrer mon image en toute circonstances : 
transform: rotate(+60deg);
  position: absolute;
  top: -9999px;
  right: -9999px;
  left: -9999px;
  bottom: -9999px;
  margin: auto; ***/ 


.hidden {
    display: none;
}