body {
    font-family: 'fraktur', fraktur;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Empêche le défilement causé par l'animation */
}



@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.7;

}


header {
    background-color: red;
    color: white;
    text-align: center;
    padding: 20px;
}

.photo {
    width: 150px;
    height: auto;
    margin-top: 15px;
}

main {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Fond semi-transparent */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #5c2e91; /* Couleur violet */
}

footer {
    text-align: center;
    padding: 10px;
    background-color: gold;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
