        /* Style général de la page */
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: fadeIn 1s ease-in-out;
        }

        /* Animation d'apparition de la page */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Style du header */
        header {
            background-color: #ff66b2;
            color: white;
            padding: 20px;
            width: 100%;
            text-align: center;
            font-size: 30px;
            font-weight: bold;
            border-radius: 0 0 30px 30px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Style du formulaire */
        .form-container {
            display: flex;
            justify-content: space-between;
            background-color: white;
            padding: 30px;
            margin: 20px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 80%;
            max-width: 900px;
            animation: slideIn 0.5s ease-in-out;
        }

        /* Animation du formulaire */
        @keyframes slideIn {
            0% { transform: translateY(-20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
		
		#hook{
		font-size:1.2rem;
		color:#ff66b2;
		text-shadow: 1px 1px 2px #FFFFFF;
		white-space: pre-wrap;
		margin: 0.5% auto;
		}

        .form-part {
            width: 45%;
            text-align: center;
        }

        .form-part input, .form-part select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-part input:focus, .form-part select:focus {
            border-color: #ff66b2;
            outline: none;
            box-shadow: 0 0 5px rgba(255, 102, 178, 0.5);
        }

        /* Séparateur avec un cœur */
        .separator {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 10%;
        }

        .separator::before {
            content: "❤️";
            font-size: 30px;
        }
		
		#form-containerQuestion {
			display: flex;
            flex-direction:column;
			justify-content: center;
            background-color: white;
			align-items: center; /* Centrer le contenu */
            padding: 2rem;
            margin: 20px auto;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 80%;
            max-width: 900px;
            animation: slideIn 0.5s ease-in-out;
		}
		
		#form-containerQuestion h3,
		#form-containerQuestion label {
			align-self: flex-start; /* Aligner à gauche (non centré) */
			margin: 0 0 10px 0; /* Espacement sous chaque élément */
		}
		
		#question {
    min-height: 10vh; /* Hauteur minimale pour le textarea */
    height: 20vh; /* Hauteur relative à la hauteur de la fenêtre */
    resize: vertical; /* Permet à l'utilisateur de redimensionner verticalement */
}

		#question {
			width: 100%; /* Remplir 100% du conteneur */
			max-width: 600px; /* Limite la largeur des champs */
			padding: 10px;
			margin: 10px 0;
			border-radius: 8px;
			border: 1px solid #ccc;
		}
		
		#email {
			width: 40%; /* Remplir 100% du conteneur */
			padding: 12px;
			  margin: 10px 0;
			  border-radius: 8px;
			  border: 1px solid #ccc;
			  font-size: 16px;
			  transition: all 0.3s ease;
		}

		#form-containerQuestion h3 {
			margin-bottom: 15px; /* Espacement spécifique sous le titre */
		}

		#form-containerQuestion label {
			margin-bottom: 5px; /* Espacement sous le label */
		}
		
		#form-containerSubmit {
			font-size:70%;
			display: flex;
			flex-direction: column;
			justify-content: center;
			margin: 0 auto;
			align-items: center;
		}

        /* Style du bouton */
        #form-containerSubmit button {
            padding: 12px 20px;
            background-color: #ff66b2;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 18px;
            width: 55%;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .form-container button:hover {
            background-color: #e74c3c;
            transform: scale(1.05);
        }

        /* Style pour afficher les résultats */
        .result-container {
            background-color: white;
            padding: 20px;
            margin-top: 20px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 80%;
            text-align: center;
            display: none; /* Masquer les résultats initialement */
            opacity: 0;
            animation: fadeInResult 1s ease-in-out forwards;
        }

        /* Animation d'apparition des résultats */
        @keyframes fadeInResult {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .result-container h2 {
            font-size: 28px;
            color: #ff66b2;
        }

        .result-container p {
            font-size: 20px;
            color: #555;
            line-height: 1.6;
        }

        .compatibility-description {
            font-style: italic;
            color: #777;
            font-size: 18px;
        }

        /* Style des emojis */
        .emoji {
            font-size: 30px;
            margin-top: 20px;
            display: block;
            text-align: center;
        }
		footer{
			display: flex;
			justify-content: center;
			margin: 5% 0% 0% 0%;
			background-color: #ff66b2;
			width: 100%;
			padding: 0;
		}
		footer a{
			margin: 1rem;
			text-decoration: none;
			font-size: 0.7rem;
			padding: 0;
			margin: 1%;
		}