     html, body {
		    height: 100%;
		    margin: 0;
		}
     
     body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #4a90e2, #9013fe);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: #2c3e50;
            color: rgb(219, 235, 73);
            padding: 20px;
            text-align: center;
            font-size: 18px;
        }

        .container {
            max-width: 600px;
            height: 250px;
            margin: 40px auto;
            background: rgb(152, 215, 238);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            display: flex;
            justify-content: left;  
            align-items: left;
            gap: 20px;
        }
        
        .container2 {
        	max-width: 600px;
            height: 100px;
        	margin: 40px auto;
        	display: flex;
            justify-content: left;  
            align-items: left;
            gap: 20px;
        	}

        img {
            width: 200px;
            height: 200px;
            border-radius: 2px solid red;
            border: #9013fe;
        }

        h1 {
            margin-top:0;
        }
        
		.left {
		    flex: 1;          /* prend toute la place disponible */
		}
		
        .menu {
            
            padding:9px;
            display: flex;
            flex-direction: column; /* boutons l’un sous l’autre */
            gap: 15px; 
            width: 200px;
            
        }

        .menu a {
            background: #3a2bd5;
            padding: 10px 5px;
            border-radius: 6px;
            text-decoration: none;
            color: #cfea37;
            text-align: left;
            font-weight: bold;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
           
        }
        .content {
    		flex: 1; /* pousse le footer vers le bas */
		}
		
		footer {
		    text-align: center;
		    padding: 10px;
		    background: #b2ade8;
		}

        input, button {
        	
            background: #bab5f2;
            color: #f5f6f1;
            border-radius: 5px;
            height: 35px;
            text-decoration: none;
            color: #cfea37;
            text-align: left;
            font-weight: bold;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        } 
   	
	
}	
