@import url("./header.css");
@import url("./animation.css");
@import url("./home.css");
@import url("./problematique.css");
@import url("./introduction.css");
@import url("./gender.css");
@import url("./device.css");
@import url("./periodEcoute.css");
@import url("./favoriteGender.css");
@import url("./conclusion.css");
@import url("./footer.css");


* {
    box-sizing: border-box;
    margin: 0;
}


@font-face {
    font-family: "Gotham-Book";
    src: url("../font/Gotham-Book.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Bold";
    src: url("../font/Gotham-Bold.otf") format("opentype");
}

h1,
h2,h3,
p,
ul,
li,
span {
    font-family: "Gotham-Book";
    color: white;
}

html {
    overflow-y: hidden;
}

/* body {
    cursor: none;
} */

.custom-cursor {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    pointer-events: none;
    z-index: 99;
    transform: translate(-50%, -50%);
}

.custom-cursor-before {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .2s ease;
    opacity: 1;

}

main {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    height: 100vh;
    background-color: #1DB954;
    scroll-snap-align: start;

}



.texte-top {
    position: relative;
    top: 7vh;
    left: 5vw;
    /* padding: 8vh; */
    color: white;
    z-index: 10;
}



.gender-svg {
    fill: #ffffff;
}

.gender-text {
    color: #ffffff;
}

/* Style lorsque la section est visible */
.gender-visible .gender-svg {
    fill: black;
}

.gender-visible .gender-text {
    color: black;
}

strong {
    text-decoration: underline;
}