body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
}

h1 {
    font-size: 2.5em;
    color: #ff7e5f;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1em;
    color: white;
    background-color: #ff7e5f;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.links a:hover {
    background-color: #ff5e3a;
}

.container iframe {
  margin-top: 1rem;
  max-width: 800px; /* si tu veux limiter la largeur sur grands écrans */
}
.container h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

@media(min-width: 600px) {
    .links {
        flex-direction: row;
        justify-content: space-around;
    }

    .links a {
        width: auto;
    }
}
