body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('background.png'); /* Replace 'background.png' with your background image */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    background-color: rgba(48, 48, 48, 0.6); /* Semi-transparent white background */
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 3.0); /* Add shadow effect */
}

h1 {
    color: #ffffff;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    border: 2px solid transparent; /* Hide border by default */
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

button:hover {
    transform: translateY(-3px); /* Move button slightly up */
}

.main-button {
    background-color: #FF4500; /* Adjust color as needed */
    color: white;
}

.download-button {
    background-color: #4CAF50; /* Adjust color as needed */
    color: white;
    font-size: 24px; /* Larger font size for download button */
}

/* Ajout de styles pour le bouton "Support" plus petit */
.smaller {
    font-size: 16px; /* Reduire la taille de la police */
    padding: 8px 16px; /* Reduire le rembourrage */
}
