body {
    background-image: url('/static/wildlife_sounds/img/wood_bg.png');
    background-size: cover;  /* Étend l'image pour couvrir tout l'écran */
    background-position: center;  /* Centre l'image */
    background-repeat: no-repeat;  /* Empêche la répétition */
    background-attachment: fixed;  /* L'image de fond reste fixe quand on défile */
    height: 100vh; /* Assure que le body prend toute la hauteur de l'écran */
    margin: 0; /* Supprime les marges par défaut */
}


h1 {
    color: ivory;
    text-align: center;
}


h2 {
    color: ivory;
    text-align: center;
}

a {
    color: rgb(248, 248, 200);
}

p {
    color: ivory;
}


.home {
    position: absolute;
    top: 3%;
    left: 1%;
    font-size: 30px;
    background-color: #b1907fd0;
    padding: 3px;
    border-radius: 3px;
    color: ivory;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.home:hover {
    background-color: #b1907f9d;
}

.home:active {
    background-color: #b1907f76;
}


.logout {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 18px;
}