/**********************/
/*********Fond*********/
/**********************/

body:before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#e100ff, #ff0000,#ff0000);
  clip-path: circle(16% at 20% 14%);
  z-index: -1;
}

body:after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#da00ff,#9900ff,#da00ff);
  clip-path: circle(27% at 65% 100%);
  z-index: -1;
}

/**********************/
/****Partie 1 Titre****/
/**********************/

.part1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    z-index: 4;

}

.part1 h1{
    font-size: 6em;
    margin: 1%;
}

.part1 h3{
    font-size: 2em;
}

/**********************/
/****Partie 2 Text*****/
/**********************/
.web{
  width: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.partweb h2{
  margin-bottom: 3%;
  font-size: 3em;
  color: #fff;
  z-index: 3;
  text-align: center;
}

.web div{
position: relative;
width: 500px;
height: auto;
margin: 30px;
box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
border-radius: 15px;
background: rgba(255, 255, 255, 0.1);
overflow: hidden;
border-top: 1px solid rgba(255, 255, 255, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.5);
backdrop-filter: blur(5px);
}

.projet{
padding: 15px;
color: #fff;
justify-content: start;
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
text-align: justify;
}

.projet h3{
padding-top: 10px;
padding-bottom: 10px;
}

.projet img{
max-width: 100%;
height: auto;
border-radius: 10px;
}

.projet a{
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.2);
  margin-left: auto;
  margin-right: auto;
}

.site{
  margin-bottom: 10%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 4;
  color: #fff;
}

.text{
  width: 50%;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding-bottom: 2%;
}

.text::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  transform: skewX(-15deg);
}

.text h2{
  font-size: 3em;
  margin: 3%;
}
.text p{
  font-size: 1em;
  max-width: 70%;
  text-align: center;
}

/**********************/
/****Partie 2 Image****/
/**********************/

.site img{
  z-index: 3;
  margin-bottom: 2%;
  width: 40%;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(25px);
}

/**********************/
/****Partie 2 bouton***/
/**********************/

.text a{
  position: relative;
  margin-top: 3%;
  width: 150px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
  z-index: 1;
}

.bouton:hover{
  animation: anim 8s linear infinite;
}

@keyframes anim{
  0%{
    background-position: 0%;
  }
  100%{
    background-position: 400%;
  }
}

.bouton:before{
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 40px;
  opacity: 0;
  transition: 0.5s;
}
 
.bouton:hover:before{
  filter: blur(20px);
  opacity: 1;
  animation: anim 8s linear infinite;
}