body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column; /* Changement pour aligner verticalement */
            align-items: center;
        }

        .top-banner {
            width: 100%;
            height: 45px; /* Hauteur de la bande */
            background-color: #0086c5;
        }

	.top-banner-img {
	    width: auto;
            height: 40px; /* Ajuster la taille de l'image du logo */
	    margin-left: 20px;
	    margin-top : 2.5px
        }

	.top-banner-img:hover {
            transform: scale(1.05); /* Agrandit légèrement le logo */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Ajoute une ombre */
        }

	.bot-banner {
            width: 100%;
            height: 45px; /* Hauteur de la bande */
            background-color: #bdcd00;
        }

        /* Bande d'image en haut de la page */
        .header-banner {
            width: 100%;
            height: 250px;
            background-image: url('/Images/IUTmontpellier.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

	.header-banner-texte {
	    font-family: 'Times New Roman', sans-serif;
	    position: absolute;
            top: 90px;
            left: 5%;
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	}

	bl {
	color: #0086c5;
	}

	v {
	color: #bdcd00;
	}

        .container {
            text-align: center;
            background-color: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
	    margin-bottom: 20px;
        }

        h1 {
            color: #333;
            font-size: 2.5rem;
        }

        p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }

        .button-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .button {
            background-color: #007BFF;
            color: white;
            padding: 15px 30px;
            margin: 10px;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #0056b3;
        }