@import url(import.css);
@import url(global-responsive.css);
@import url(fp-responsive.css);

:root {
    --small-font-size: 1.8vw;
    --medium-font-size: 4rem;
    --large-font-size: 6vw;
    --color-font: rgb(0, 0, 0);
    --primary: #F3F3D2;
    --secondary: #ff0000;
}

* {
    margin: 0;
    padding: 0;
}


body {
    max-width: 100vw;
    min-width: 100vw !important;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "sofia-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    opacity: 0;
    transition: opacity 1s ease;
}
body.fade-in {
  opacity: 1;
}

/* Effet de sortie */
.fade-out {
  opacity: 0 !important;
  transition: opacity 1s ease;
}

h2 {
    font-size: var(--large-font-size);
    text-align: center;
    margin-top: 9%;
    width: 90%;
}



li {
    list-style: none;
}

h3 {
    font-size: var(--medium-font-size);
    font-weight: 100;
    margin: 2%;
}
.menu-item-span {
    font-size: 1.7vw;
    color: #ffffff;
    margin-left: 5px;
}
