body  {
        margin: 0; 
        background: linear-gradient(135deg, blue, green);
        background-blend-mode: overlay; 
        font-family: sans-serif;
        height: 180vh;
}

.titre {
        font-size: 50px;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
        color: white;
}

.sous-titre {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 40px;
}

.container {
        text-align: center;
        background-color: white;
        min-width: min-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 200px;
        border-radius: 20px;
        padding: 15px;
        width: 30%;
}

input {
        border-radius: 5px;
        border: none;
        margin-bottom: 10px;
        padding: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

button {
        border-radius: 10px;
        background-color: purple;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        margin: 10px 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
button:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

a {
        color: black;
        text-decoration: none;
        transition: color 0.2s ease;
}
a:hover {
        color: blue;
}

.paragraphe-presentation {
        display: flex;
        gap: 20px;
        width: 90%;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
}

.paragraphe-presentation img {
        width: 30%;
        float: left;
        border-radius: 50px;
}

.paragraphe-presentation .text-presentation {
        width: 70%;
        font-size: 18px;
        float: right;
        text-align: justify;
}
