body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: white;
}

.background-image {
    background-image: url('lamb.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.click-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1; /* Assure que la zone de clic est au-dessus de tout */
}

.title {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.title h1 {
    font-size: 3rem;
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0); /* Fond semi-transparent */
    border-radius: 10px;
}

.footer {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    width: 100%;
    padding: 10px 0;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}

.footer a {
    color: white;
    text-decoration: none; /* Supprime le soulignement par défaut */
}

.footer a:hover {
    text-decoration: underline; /* Ajoute un soulignement au survol */
}

