@font-face{
    font-family: "Supreme";
    src: url(Fonts/Supreme_Complete/Supreme_Complete/Fonts/TTF/Supreme-Variable.ttf);
}
a{
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.texte{
  font-weight: 400;
  font-style: normal;
}
.texte--titre {
  font-family: "Angkor", serif;
  font-size: 50px;
}
.texte--soustitre{
   font-size: 34px;
}
.texte--date{
    font-size: 23px;
}
.texte--desc{
    font-size: 16px;
}
.supreme{
    font-family: "Supreme";
    font-weight: 500;
}
.supregular{
    font-family: "Supreme";
    font-weight: 400;
    font-size: 16px;
}
.supbold{
    font-weight: 700;
}
body{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
}
.nav{
    background-color: #010029;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.nav__liste{
    list-style: none;
    display: flex;
    justify-content: start;
    margin: 0;
}
.nav__el{
    padding: 20px 0px 20px 35px;
}
.nav__el a{
    transition: ease 0.3s;
    padding: 10px;
    border-radius: 15px;
}
.nav__el a:hover{
    background-color: aliceblue;
    color: #010029;
}
@media (max-width: 600px){

    .nav__toggle{
        position: sticky;
        top: 10px;
        left: 10px;
        background-image: url(icons/menu.svg);
        background-repeat: no-repeat;
        width: 24px;   
        height: 24px;
        background-position: center;
        background-size: contain;
        text-indent: 100%;
        overflow: hidden;
        white-space: nowrap;
    }
    .nav__liste{
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        z-index: 10;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;  
    }
    .nav--open .nav__liste{
        transform: translateX(0);   
    }
    .nav{
        background: linear-gradient(270deg,rgba(58, 0, 140, 1) 0%, rgba(20, 0, 41, 1) 100%);
    }
    .nav__el{
        margin-top: -20px;
    }
}
@media (min-width: 600px){
    .nav__toggle{
        display: none;
    }
}

.nav{
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
}
.menu{
    background: linear-gradient(270deg,rgba(58, 0, 140, 1) 0%, rgba(20, 0, 41, 1) 100%);
    color: white;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 20px;
}
.menu__title{
    margin: 50px 79px 0px 79px; 
}
.menu__desc{
    font-size: 16px;
    line-height: 153%;
    margin: 0px 20% 31px 20%;
    padding-bottom: 31px;
}
.main__title{
    font-size: 50px;
    padding: 22px 0px 18px 35px;
}
.main__section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main__name{
    font-size: 34px;
    margin: 0;
    z-index: 20;
}
.main__date{
    font-size: 23px;
    margin: 0;
    z-index: 20;
    padding-bottom: 42px;
   
}
.main__img{
    width: 250px;
    height: auto;
    clip-path: circle(120px) ;
    position: absolute;
    transition: 0.5s ease;
}
.main__content{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    z-index: 5;
    position: relative;
}
.main__cercle{
    width: 259px;
	height: 259px;
	border-radius: 50%;
	background-image:linear-gradient(180deg,rgba(20, 0, 41, 1) 0%, rgba(58, 0, 140, 1) 100%);
    position: absolute;
    z-index: -10;
    box-shadow: 4px 4px 10px #B2B1B1;
}
 .main__img:hover, .main__img:focus{
    scale: 0.99;
}

.main__btns{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: -100px;
}

.main__btn{
    position: relative;
    z-index: 100;
    font-size: 16px;
    background-image:  radial-gradient(circle,rgba(58, 0, 140, 1) 0%, rgba(20, 0, 41, 1) 100%);;
    padding: 8px 28px 8px 28px;
    border-radius: 3px;
    color: white;
    margin-bottom: -130px;
    text-decoration: none;
    transition: 0.5s ease;
    text-align: center;
}
.main__btn:hover, .main__btn:focus{
    scale: 1.1;
}
.main__paragraphe{
    background-image:linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(55, 0, 133, 0.5) 100%);;
    font-size: 23px;
    padding: 130px 60px 50px 60px;
    z-index: -11;
    text-align: center;
    margin-left: 150px;
    margin-right: 150px;
    border-top: 4px solid;
    border-radius: 10px;
    border-top-color: #5e417e;
}
footer{
    display: flex;
    flex-direction: column;
    background-color: #140029;
    color: white;
    align-items: center;
    padding-bottom: 5px;
}
.credit{
    padding: 15px 0px 13px 0px;
}
@media (min-width: 1024px){
    .main{
        display: grid;
        grid-template-columns: repeat(3, 33%);
        grid-template-rows: repeat(2, 1fr);
        gap: 40px;
        padding-inline: 80px;
        justify-content: center;
        align-items: baseline;
    }
    .main__btns{
        justify-content: center;
        margin-bottom: 0;
    }
    .helloworld{
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .redesign{
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .somenews{
        grid-column: 3/4;
        grid-row: 1/2;
    }
    .janus{
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .test{
        grid-column: 1/2;
        grid-row: 3/4;
    }
    .main__title{
        margin-top: 30px;
    }
    .texte--titre{
        font-size: 90px;
    }
    .texte--soustitre{
        font-size: 45px;
    }
    .texte--desc{
        font-size: 23px;
    }
    .title--small{
        font-size: 64px;
    }
    .main__cercle{
    width: 300px;
	height: 300px;
    }
    .main__img{
    width: 320px;
    height: auto;
    clip-path: circle(140px);
    }
    .texte--date{
        margin-bottom: 20px;
    }
    .menu{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .nav__liste{
        justify-content: end;
        margin-right: 60px;
    }
    
}
.imgfct{
    cursor: pointer;
}
.imgfctBig{
   position: fixed; 
    top: 50%;         
    left: 50%;      
    transform: translate(-50%, -50%); 
    z-index: 1000;    
    max-width: 90%;  
    max-height: 90%;
    width: auto;    
    height: auto;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.8);
}
.titreall{
    padding: 6px 16px 6px 16px;
    color: white;
    background-color: #380188;
    border-radius: 20px;
    box-shadow: 0px 0px 42px 5px rgba(0,0,0,0.22);
    white-space: nowrap;
}