#header{
            width: 100%;
            position: relative;
            top: 40px;
            opacity: 0;
            z-index: 1;
            animation: fondu 4s ease-in forwards 1s;
        }
        
        @keyframes fondu {
            0% { opacity: 0;}
            100% { opacity: 1;}
        }

        h1{
            font-family: 'Arial';
            font-size: 40px;
            margin: 50px auto;
            padding: 40px;
            text-align: center;
            text-transform: uppercase;
            
        }
        .container-line{
            display: flex;
            justify-content: space-around;
            width: 85%;
            margin: 0 auto;
            height: 150px;
        }
        
        .bloc{
            width: 30%;
            height: 90px;
            border-radius: 100px;
            box-shadow: 0 2px 8px grey;
            text-align: center;
            padding: 10px;
            padding-top: 20px;
            border: 3px solid transparent;
        }
        
        .bloc:hover{
            box-shadow: 0 2px 8px grey;
            border: 3px solid darkgrey;
            transition: 0.3s linear;
        }
        
        form{
            width: 100%;
            text-align: center;
            margin-bottom: 70px;
        }
        
        label{
            display: block;
            width: 100%;
            font-family: 'Arial';
            font-size: 23px;
        }
        
        select{
            width: 40%;
            font-family: 'Poiret One', cursive;
            font-size: 22px;
            height: 30px;
            position: relative;
            top:20px;
        }
        
        input[type=submit]{
            border: none;
            font-family: 'Poiret One', cursive;
            font-size: 25px;
            width: 30%;
            border-radius: 10px;
            box-shadow: 0 2px 8px grey;
            text-align: center;
            padding: 10px;
        }
        
        input[type=submit]:hover{
            border-radius: 30px;
            box-shadow: 0 5px 8px grey;
            transition: 0.3s linear;
        }

        #container-result {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: white;
        }

        #container-result img{
            width: 100%;
            position: absolute;
            top: 100px;
            left: 0;
        }

        h2{
            text-align: center;
            font-family: 'Arial';
            font-size: 60px;
            position: relative;
            top: -30px;
            text-shadow: 0 2px 3px rgba(0,0,0,0.3);
        }

        #container-stat{
            position: relative;
            top:-60px;
            width: 100%;
            display: flex;
            justify-content: space-around;
            text-transform: uppercase;
            font-size: 30px;
        }

        #container-stat p {
            text-align: center;
            font-family: 'Poiret One', cursive;
            text-shadow: 0 2px 3px rgba(0,0,0,0.2);
        }
