* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    scroll-behavior: smooth;
    font-family: font;
}

html, body { 
    max-width: 100% !important; 
    overflow-x: hidden !important; 
} 

@font-face {
    font-family: font;
    src: url('font.ttf') format('truetype');
}

body {
    background-color: #5A8D3E;
    color: black;
}

.navbar-brand {
    font-size: 30px;
    color: black;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.nav-item a {
    font-size: 20px;
    color: black;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}


/* intro */

.intro {
    padding-top: 30px;
    padding-bottom: 50px;
    background-image: url('fepebg.png');
    background-size: cover;
    background-position: center;
}

/* alignement et modification du style "create your" et "dev skills" */

.intro-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.intro-text {
    width: 80%;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.96px;
    text-shadow: 1px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
               1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.intro-list img {
    width:300px;
}

.intro-list li::before {
    content: '•';
    color: #29BDB4;
}

#pf {
    color: #88CF61;
    border-radius: 50px;
    border: 6px solid #88CF61;
    padding: 10px 20px 10px 20px;
    text-transform: uppercase;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#pf:hover {
    color: #5A8D3E;
    background-color: black;
}

.intro-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

#social {
    width: 10vw;
}

#social:hover {
    opacity: 70%;
}

/* fin bouton */

/* Section trust */

.trust {
    background-color: #88CF61;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 54.32px;
    letter-spacing: 1.12px;
    margin: 0px 0 50px 0;
}

/* Section How to create */

.how_to_create {
    padding-top: 30px;
    padding-bottom: 30px;
}

.how_to_create h2 {
    text-align: center;
}

.how_to_create_box p {
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    border-radius: 12px;
    background-color: #88CF61;
    border: 5px solid black;
    padding: 30px 10px 30px 70px;
    width: 80%;
    margin: auto;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#create {
    transform: rotate(2deg);
}

#raydium {
    transform: rotate(-2deg);
}

#funds {
    transform: rotate(2deg);
}

#add {
    transform: rotate(-2deg);
}

#sol {
    transform: rotate(2deg);
}

.how_to_create_box {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 20px 0px;
}

#start {
    text-align: center;
    font-size: 0.8em;
    border-radius: 14px;
    background: #88CF61;
    color: black;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 50px;
    width: 50%;
    margin: auto;
    text-decoration: none;
    border: 8px solid black;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#start:hover {
    background: black;
    color: #88CF61;
}


/* section we are on */

.we_are_on {
    padding: 20px 0px;
}

.we_are_on p {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.8px;
}

.we_are_on h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.box_blockchain {
    border-radius: 12px;
    background-color: #88CF61;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border: 8px solid black;
    margin: 0px 20px;
    animation: float 3s ease-in-out infinite;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

    @keyframes float {
        0% {
          transform: translatey(0px);
        }
        50% {
          transform: translatey(-20px);
        }
        100% {
          transform: translatey(0px);
        }
      }

.box_blockchain p {
    text-align: center;
    width: 90%;
    margin: auto;
    color: black;
}

.box_blockchain img {
    width: 100%;
    border-radius: 12px;
}

.army {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

/* section roadmap */

.roadmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #5A8D3E;
    padding: 50px 0px;
}

.roadmap img {
    width: 300px;
}

.roadmap h2 {
    color: black;
    font-size: 34px;
    font-style: normal;
    text-align: center;
    font-weight: 600;
    line-height: 69.84px;
    letter-spacing: 1.44px;
}

.step {
    border-radius: 12px;
    border-bottom: 2px solid #000000;
    background: #88CF61;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    margin: 0px 35px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: rotate(-10deg);
}

.step p {
    font-size: 12px;
}

.navbar-brand img {
    width: 100px;
}

/* message defilant */

.messagedefilant {
    display: block;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 75px;
    background-color: #88CF61;
  }
   
  .messagedefilant div {
    position: absolute;
    min-width: 100%; /* au minimum la largeur du conteneur */
  }
   
  .messagedefilant div span, 
  .messagedefilant div:after {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    white-space: nowrap;
    top:0;
  }
   
  .messagedefilant div span {
    animation: defilement 6s infinite linear;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 700;
    word-spacing: 10px;
  }
   
  .messagedefilant div:after {
    position: absolute;
    top:0; left:0;
    content:attr(data-text);
    animation: defilement2 6s infinite linear;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 700;
    word-spacing: 10px;
  }
   
  @keyframes defilement {
    0% { margin-left: 0; }
    100% { margin-left: -100%; }
  }
   
  @keyframes defilement2 {
    0% { margin-left: 100%; }
    100% { margin-left: 30px; }
  }


@media screen and (min-width: 780px) {


    #start {
        font-size: 1em;
    }
    
    
    .navbar-brand {
        font-size: 50px;
        color: #58D6FF;
    }
    
    .nav-item a {
        font-size: 35px;
        color: #58D6FF;
    }

    /* intro desktop */

    .intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .intro-infos {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .intro-text {
        width: 40%;
        margin-left: 50px;
        margin-top: 20px;
        transform: rotate(2deg);
    }

    .intro-text h2 {
        font-size: 120px;
        line-height: 100px;
    }

    .intro-list {
        margin-top: 50px;
        padding-bottom: 50px;
    }

    .intro-list img {
        width: 400px;
    }

    #pf {
        color: #88CF61;
        border-radius: 50px;
        border: 6px solid #88CF61;
        padding: 10px 20px 10px 20px;
        text-transform: uppercase;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        text-decoration: none;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }
    
    #pf:hover {
        color: #5A8D3E;
        background-color: black;
    }
    
    .intro-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        gap: 20px;
    }
    
    #social {
        width: 80px;
    }

    /* Section trust */
    .trust {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 20px 0;
    }

    .trust h3 {
        font-size: 40px;
    }

    /* Section how to create */

    .how_to_create {
        margin-bottom: 100px;
    }
    
    .how_to_create h2 {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .how_to_create_box {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        width: 80%;
        margin: auto;
    }

    .how_to_create_box p {
        font-size: 30px;
    }


    /* Section we are on */

    .we_are_on {
        margin-bottom: 100px;
    }

    .we_are_on h2 {
        font-size: 50px;
        margin-bottom: 40px;
    }

    
    
    .box_blockchain {  
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 90%;
        margin: auto;
        animation: float 3s ease-in-out infinite;
    }

    .army {
        width: 80%;
        margin: auto;
        font-size: 2em;
    }
    

    @keyframes float {
        0% {
          transform: translatey(0px);
        }
        50% {
          transform: translatey(-20px);
        }
        100% {
          transform: translatey(0px);
        }
      }

    .box_blockchain p {
        font-size: 25px;
        width: 80%;
        line-height: 40px;
    }

    /* Section CA */

    .roadmap h2 {
        font-size: 50px;
    }

    .roadmap img {
        width: 500px;
    }
    
    .step p {
        font-size: 25px;
    }

    /* message defilant */

.messagedefilant {
    display: block;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 75px;
    background-color: #88CF61;
  }
   
  .messagedefilant div {
    position: absolute;
    min-width: 100%; /* au minimum la largeur du conteneur */
  }
   
  .messagedefilant div span, 
  .messagedefilant div:after {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    white-space: nowrap;
    top:0;
  }
   
  .messagedefilant div span {
    animation: defilement 6s infinite linear;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 700;
    word-spacing: 10px;
  }
   
  .messagedefilant div:after {
    position: absolute;
    top:0; left:0;
    content:attr(data-text);
    animation: defilement2 6s infinite linear;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 700;
    word-spacing: 10px;
  }
   
  @keyframes defilement {
    0% { margin-left: 0; }
    100% { margin-left: -100%; }
  }
   
  @keyframes defilement2 {
    0% { margin-left: 100%; }
    100% { margin-left: 30px; }
  }
      
}




@media screen and (min-width: 1100px) {


    #start {
        font-size: 1em;
        width: 30%;
    }

    #pf {
        color: #88CF61;
        border-radius: 50px;
        border: 6px solid #88CF61;
        padding: 10px 20px 10px 20px;
        text-transform: uppercase;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        text-decoration: none;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }
    
    #pf:hover {
        color: #5A8D3E;
        background-color: black;
    }
    
    .intro-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        gap: 50px;
    }
    
    #social {
        width: 100px;
    }
}