* {
    padding: 0;
    margin: 0;
    transition: all 0.4S ease-in-out;
}
body {
    padding: 0;
    margin: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contenu {
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 255, 0.253);
}
.home {
    height: 600px;
    animation-name: zoom;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in;
    opacity: 0.7;
}
.p{
    position: relative;
    padding: 15px;
}
.logo{
    position: absolute;
    overflow: hidden !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background-color: rgba(0, 255, 255, 0.253);
    flex-wrap: wrap;
    animation: rote 0.5s ease-in-out 2s 2 alternate;
}
.welcome{
    position: absolute;
    margin-top: -350px;
    font-size: 40px;
    font-weight: bold;
    font-family: roboto ,sans-serif;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.205);
    animation: text 5s ease-out  1 ;
    color: rgb(255, 255, 255);
    text-align: center;
}
.logo-link{
    display: none;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.815);
    flex-wrap: wrap;
}
.enter{
    position: absolute;
    margin-top: 350px;
    font-size: 18px;
    font-weight: bold;
    font-family: roboto ,sans-serif;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.205);
    animation: text 5s ease-out  1 ;
    color: rgb(255, 255, 255);
    cursor: pointer;
    text-align: center;
}
.anime-link{
    display: flex;
    animation: link 3s ease-in-out;
}
.porte{
    animation: porte 0.4s ease-in-out; 
}
.anime-logo-1{
    animation: top1 10s ease 1s infinite alternate;
}
.anime-logo-2{
    animation: top1 10s ease 1s infinite alternate;
}
.anime-logo-3{
    animation: top1 10s ease 1s infinite alternate;
}
.anime-logo-4{
  
    animation: top1 10s ease 1s infinite alternate;
}
@media screen and (min-width:1201px) {
    .home {
        height: 600px !important;
    }
}
@media screen and (max-width:1200px) {
    .home {
        height: 500px !important;
    }
}
@media screen and (max-width:1000px) {
    .home {
        height: 450px !important;
    }
}
@media screen and (max-width:400px) {
    .home {
        height: 300px !important;
    }
}
@keyframes zoom {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}
@keyframes top1{
   0%{
    transform: scale(3);
    opacity: 0.001;
   }100%{
    transform: scale(1);
    opacity: 0.8;
   }
}
@keyframes rote{
    0%{
     transform: rotate(-180deg);
     opacity: 0.5;
    }100%{
        transform: rotate(180deg);
     opacity: 0.8;
    }
 }
@keyframes text{
    0%{
        transform: scale(1.5);
     opacity: 0.5;
    }100%{
        transform: scale(1);
     opacity: 0.8;
    }
 }
@keyframes link{
    0%{
        transform: scale(105);
     opacity: 0.1;
    }100%{
        transform: scale(1);
     opacity: 1;
    }
 }
@keyframes porte {
    0%{
        transform: scale(1);
        opacity: 1;
    }100%{
        transform: scale(100);
        opacity: 0;
    }
}
 .backDoor
{
  background-color: rgb(255, 255, 255);
}

.door
{
 
  position:absolute;
  transform-origin: left;
  /*Speed of the Door animation*/
  transition: all 0.5s ease-in-out;
}

.backDoor:hover .door
{
 background-color: orangered;
  /*prespectiv creates the door open effect*/
  transform: perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-105deg);
}
