/*UTILE*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: #16181C;
}

.txt {
    font-family: 'Poppins', sans-serif;
    color: #B0BABC;
    margin: 20px;
    text-decoration: none;
    cursor: all-scroll;
}

#img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 300px;
}

#banniere  {
    width: 100%;
}

/* Initialement caché */
span {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

/* Visible */
span.visible {
    opacity: 1;
}

/*HEADER*/
/*icon*/
#icon {
    border-radius: 15px;
    width: 65px;
    position: absolute;
    margin-top: 15px;
}

/*-----UNDERLIGNE-----*/
.switcher {
    position: relative;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 40px;
    margin-left: 30px;
    margin-right: 30px;
    font-weight: 600;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    color: white;
}
.switcher::after {
    content: '';
    position: absolute;
    border-radius: 15%;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #FF5C00;
    transition: width 0.3s ease;
}

.switcher:hover::after {
    width: 100%;
}

#switch {
    display: flex;
    justify-content: center;
}

/*MAIN*/
main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 30px;
}
.set {
    margin-left: 20px;
    color: #B0BABC;
    font-family: Montserrat, sans-serif;
}
#information {
    background-color: #26292F;
    border-radius: 10px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 10px;
    
}

/*BUTTON*/
.button {
    background-color: #FF5C00;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    width: 80%;
    height: 45px;
    text-align: center;
    margin: auto;
    align-items: center;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.button:hover {
    background-color: #ff701e;
    transition: 0.3s;
}

.button2 {
    background-color: #17c500;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    width: 80%;
    height: 45px;
    text-align: center;
    margin: auto;
    margin-top: 30px;
    align-items: center;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.button2:hover {
    background-color: #6be45b;
    transition: 0.3s;
}


hr {
    border: none;
    background-color: white;
    height: 1px;
    width: 95%;
}

/*bio*/
#bio {
    background-color: #26292F;
    margin-top: 10px;
    border-radius: 10px;
}

/*more*/
#more {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}
/*Version*/
#version {
    background-color: #26292F;
    width: 205px;
    height: auto;
    margin: 10px;
    margin-top: 0;
    border-radius: 10px;
}

/*contact*/
#contact {
    background-color: #26292F;
    width: auto;
    height: 305px;
    margin: 10px;
    margin-bottom: 0px;
    border-radius: 10px;
}

/*owner*/
#owner {
    background-color: #26292F;
    width: auto;
    height: 255px;
    margin: 10px;
    border-radius: 10px;
}

.pp {
    display: flex;
    align-items: center;
}

.mpp {
    width: 35px;
    border-radius: 100%;
    margin-left: 10px;
}
/*FOOTER*/
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.feet {
    width: 175px;
}

/*apropos*/
#apropos {
    width: 175px;
}

/*nouscontact*/

/*liens*/
#liens {
    display: flex;
    flex-direction: column;
}

.links {
    font-family: 'Poppins', sans-serif;
    color: #B0BABC;
    margin: 5px;
    margin-left: 20px;
    text-decoration: none;
}

/*create*/
#create-title {
    margin-top: 100%;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-left: 20px;
}

/*mobile*/
@media only screen and (max-width: 768px) {
#icon{
    display: none;
}

#switch{
    margin-left: auto;
}
}