@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Orbitron:wght@400..900&display=swap" rel="stylesheet');


body{
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7C1DB7 10%, #000000 70%); 
  height:100vh ;
}

/* ==================================================================\\DEBUT DU HEADER//============================================================== */

header{
  display: flex;
  justify-content: space-between;
  padding: 1vh;
}

#logo{
  width: 18rem;
}

.bouton_header{
  align-content: center;
}


.bouton{
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  background-color:black ;
  border: solid #ae40f2 1.7px ;
  border-radius: 100px;
  color: white;
  text-decoration: none;
  padding: 1vh 2vw 1vh 2vw;  
  margin: 0 1vw 0 1vw;
  transition: 1s;   
}

.bouton:hover{
  color: black;
  box-shadow: 0px 0px 20px white;
  border: solid #dac5e8 1.7px ;
  background-color: rgb(198, 29, 232);
  transition: 1s;
}

@media(max-width:400px){
    .bouton{
        font-size:1.1rem;
    }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media (min-width: 1440px) {
  html {
    zoom: 1.5;
  }
}

@media (min-width: 2560px) {
  html {
    zoom: 1.7;
  }
}

@media (min-width: 3860px) {
  html {
    zoom: 2.5;
  }
}

@media(max-width:1000px){

  #logo{
    width: 12rem;
  }
}

/* ==================================================================\\FIN DU HEADER//============================================================== */

main{
    display: flex;
    flex-direction: column;
    text-align: center;
}

h1{
    text-align: center;
    font-size: xx-large;
    font-family: "Gruppo", sans-serif;
    color: white;
}

h2{
    font-family: "Gruppo", sans-serif;
    color:white;
    padding: 1vw;
}
nav{
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projet{
  width: 40vw;
  margin: 1vw 0 1vw 0  ;
}

.img_projet{
  width: 16rem;
  padding: 2vw;
  transition: 1s;
}
.img_projet:hover{
  border-radius: 30px;
  box-shadow: 0px 0px 20px white;
  transition: 1s;
}


@media(max-width:600px){
  .img_projet{
    width: 14rem;
  }
}

p{
  color: white;
}