<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet" />
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #0B82A8 0%, #31B08A 100%);
font-family: 'Montserrat', sans-serif;
}
.title-container {
text-align: center;
padding: 50px 60px;
background-color: #ffffff;
border-radius: 18px;
border: 3px solid #0B82A8;
box-shadow: 0 15px 35px rgba(11, 130, 168, 0.15);
animation: fadeIn 1.2s ease-out forwards, slideIn 0.8s ease-out forwards;
max-width: 900px;
}
.title-container h1 {
font-size: 2.6em;
font-weight: 700;
margin: 0;
line-height: 1.25;
background: linear-gradient(90deg, #0B82A8 0%, #31B08A 50%, #FF5500 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.title-container p {
font-size: 1.2em;
margin-top: 20px;
font-weight: 500;
color: #0B82A8;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideIn {
from { transform: translateY(-25px); }
to { transform: translateY(0); }
}
@media (max-width: 768px) {
.title-container {
padding: 35px 25px;
}
.title-container h1 {
font-size: 1.9em;
}
.title-container p {
font-size: 1em;
}
}
</style>
<div class="title-container">
<h1>Bienvenue sur la plateforme de soumission du congrès 3CVD 2026</h1>
<p>Le congrès commun 3CVD des 9 sociétés savantes</p>
</div>