a {
    text-decoration: none;
    color: rgb(134, 134, 134) ;
}

html {
    width: 100%;
    height: 100%;
}
body{
    margin: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/fond.jpg');
    background-size: 120%;
    background-position: 10% 10%;
    background-repeat: no-repeat;
}
header .logo {
    width: 50%;
}

header .decors {
    width: 100%;
    height: 100%;
    position: absolute; 
    top: 0; 
    left: 0;
    z-index: -1;
}

header {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
}

header .menu{
    display : flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width : 50%;
    position : absolute;
    top : 0;
    padding-top : 20px;
}

header .menu a {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #EEEEEE;
    text-decoration: none;
    font-size: 1.2em;
}

header .menu a:hover {
    text-shadow: 2px 2px #0E0E0E;
    transition: text-shadow 0.3s ease-in-out;
    color: #009BE8;
}

header .pictos {
    width: 100%;
    height: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

header .pictos img {
    padding-left: 20px;
}

header .picto {
    height: 100%;
}

header p{
    text-transform: uppercase;
    font-size: 1.3em;
    letter-spacing: 2px;
    color: #EEEEEE;
    animation: neon 0.9s ease-in-out 0.5s infinite alternate;
}

/* 
header button {
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 2px;
    color: #EEEEEE;
    background: radial-gradient(rgb(110, 6, 12),rgba(116, 17, 29, 0.9),rgba(132, 14, 25,0.40));
    border: none;
    border-radius: 2%;
    width: 17%; 
    padding: 5px;
    animation: neon 0.6s ease-in-out 0s infinite alternate;
    margin-bottom: 7%;
    cursor: pointer;
}
header button:hover{
    box-shadow: 0 0 6px 3px rgb(110, 6, 12); 
}
*/

header iframe {
	width:50%;
    box-shadow: 0 0 10px 5px #0E0E0E;
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
}
header iframe:hover {
    box-shadow: 0 0 18px 7px #050505;
    cursor: pointer;
}

@keyframes neon{
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@font-face {
       font-family: 'Helvetica';
       src: url('font/HELR45W.ttf');
}
*{ 
    font-family: 'Helvetica', sans-serif;
}

/* footer {
    width: 100%;
    height: 8%;
    position: absolute;
    bottom: 0;
    background-color: rgba(50, 50, 50, 0.6);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 0 8px 1px #0E0E0E;
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}


footer a{
    height: 80%;
}

footer .picto{
    height:90%;
}

footer.show {
   transform: translateY(0);
}
*/ 