@font-face {
  font-family: GEO ;
  src: url(../../../_fonts/Geo-Regular.ttf);
}

@font-face {
  font-family: ANTA ;
  src: url(../../../_fonts/Anta-Regular.ttf);
}

@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap");


body {
  
  margin: 0;
  background: rgb(231, 230, 240);
  
}

header {
    top: 0;
    position: sticky;
    background-color: rgba(222, 221, 240, 0.6);
    box-shadow: 1px 1px 5px rgba(76, 74, 217, 0.4);
    backdrop-filter: blur(3px);
    padding: 1% 0 1% 0;
    z-index: 3;
}

header nav .home {
    display: flex;
    color: rgba(76, 74, 217, 1)
}

header nav .navlist {
    display: flex;
    justify-content: flex-end; text-decoration: none;
    align-items: center;
    list-style-type: none;
    color: rgba(76, 74, 217, 1); text-decoration: none;   
}

header nav li {
    margin-left: 50px;
    color: rgba(76, 74, 217, 1); text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: ANTA, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 15% 0 15%;
}

header nav a:link {
    color: rgba(76, 74, 217, 1); text-decoration: none;
}

header nav a:visited {
    color: rgba(76, 74, 217, 1); text-decoration: none;
}

.content {
  margin: 0 15% 0 15%;
   
}

h1 {
  display: flex;
  font-family: GEO, sans-serif;
  font-size: 52px;
  justify-content: center;
  color: rgba(76, 74, 217, 1);
}

h4 {
  margin-top: 5%;
  text-align: center;
  font-family: GEO , sans-serif;
  font-size: 32px;
  color: rgb(76, 74, 217);
}

p {
  margin: 0 15% 0 15%;
  text-align: center;
  font-family: ANTA , sans-serif;
  text-align: justify;
}

.puce {
  margin: 0 15% 1% 15%;
  text-align: center;
  font-family: ANTA , sans-serif;
  text-align: justify;
}

.maintxt {
  margin: 0 0 5% 0;
  text-align: center;
  font-family: ANTA , sans-serif;
  line-height: 25px;
}

.txtsite {
  font-family: ANTA , sans-serif;
  line-height: 25px;
  text-align: center;
  color: rgba(76, 74, 217, 1);
}

.container {
  margin-top: 5%;
  margin-bottom: 5%;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 10px;

  > div {
    flex: 0 0 200px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;

    &:nth-of-type(1) {
      background: url("V1.png")
        no-repeat 10% / cover;
    }
    &:nth-of-type(2) {
      background: url("V2.png")
        no-repeat 10% / cover;
    }
    &:nth-of-type(3) {
      background: url("V3.png")
        no-repeat 10% / cover;
    }
    

    .box {
      font-size: 1.5rem;
      color: rgba(76, 74, 217, 1);
      font-family: ANTA;
      display: flex;
      align-items: center;
      padding: 15px;
      opacity: 0;
      flex-direction: column;
      height: 100%;
      justify-content: flex-end;
      /* background: rgb(2, 2, 46);
      background: linear-gradient(
        0deg,
        rgba(2, 2, 46, 0.6755077030812324) 0%,
        rgba(255, 255, 255, 0) 100%
      ); */
      /* transform: translatey(100%); */
      transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
      visibility: hidden; 
    }

    &:hover {
      flex: 0 0 600px;
      box-shadow: 1px 3px 15px rgba(76, 74, 217, 1);
      transform: translatey(-30px);
    }

    &:hover .box {
      opacity: 1;
      transform: translatey(0%);
      visibility: visible;
    }
  }
}

.txtcode {
  margin-top: 5%;
  font-family: ANTA , sans-serif;
  line-height: 25px;
  text-align: center;
  
}

.pics {
  display: flex;
  justify-content: center;
  margin: 5% 0 5% 0; 
  align-items: center;
}

.gantt {
  box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.2);
  width: 60%;
  height: 60%;
  justify-content: center;
}

a:link, a:visited {
  color: rgb(76, 74, 217);
  text-decoration: none;
}

.bouttonmore{
  margin-top: 5%;
}

.button {
  --😀: rgb(76, 74, 217);
  --😀😀: #4836bb;
  --😀😀😀: #654dff63;
  cursor: pointer;
  width: 20%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: ANTA , sans-serif ;
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--😀);
  border: 2px solid var(--😀😀);
  border-radius: .75rem;
  box-shadow: 0 8px 0 var(--😀😀);
  transform: skew(-10deg);
  transition: all .1s ease;
  margin: 0 auto 5% auto;
  text-decoration: none;
  color: rgb(222, 221, 240);
  box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.1);
}

.button:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--😀😀😀);
}

h2 {
  color: rgb(76, 74, 217);
  font-family: GEO , sans-serif;
}

footer {
  background-color: rgba(222, 221, 240, 0.6);
  box-shadow: 1px 1px 5px rgba(76, 74, 217, 0.4);
  backdrop-filter: blur(3px);
  padding: 1% 0 1% 0;
  font-size: 18px;
}

footer .footer_content {
  margin: 0 15% 0 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: ANTA, sans-serif;
  color: rgba(76, 74, 217, 1); text-decoration: none;
}

footer .contact {
  display: flex;
  align-items: center; 
}

footer .contact .mail {
  display: flex;
  margin-left: 30px;

}

footer .copyright {
  display: flex;
  align-items: center;
}

footer .copyright .copymoi {
  margin-left: 30px;
}
