#main {
    font-family: Arial, sans-serif;
    width: 75%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}
/*
#main h1 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-top: 80px;
    text-transform: uppercase;
    letter-spacing: 1px;
}*/



.card {
    background: rgba(255, 255, 255, 0.15); /* semi-transparent */
    backdrop-filter: blur(10px); /* effet de flou en arrière-plan */
    
    border: 1px solid rgba(255, 255, 255, 0.3); /* effet de bord */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 0;
}


#main p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.under-construction {
    background-color: green;
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f57c00;
}

.under-construction p {
    font-weight: bold;
    color: #333;
}
