@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('/images/whitedot.png'), auto !important;

}

body{
    /*font-family: "Poppins", sans-serif;*/
    /*font-family: "Quicksand", sans-serif;*/
    font-family: "Inter";
    font-style: normal;
    display: grid;
    overflow: hidden;
    background: #10092c;
    opacity: 0.75;
}

.circle{
  --circle-size: 40px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid #cecece;
  border-radius: 100%;
  top: calc(var(--circle-size) /2*-1);
  left: calc(var(--circle-size) /2*-1);
  pointer-events: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

ul{
    display: flex;
}

nav ul li{
    list-style: none;
}

li a{
  text-decoration: none;
  transition: 0.25s ease;
  padding: 5px;
  color: #cecece;
}

ul:hover a {
  color: #616161;
}
ul:hover a:hover {
  background: #cfcfcf;
  background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
  background-clip: text ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a{
    text-decoration: none;
    margin-right: 20px;
    color: black;
}

h1{
    margin: 25px;
    background: #cfcfcf;
    background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
    background-clip: text ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

#travaux{
    justify-self: center;
    font-size: xxx-large;
    margin-top: 100px;
}

main{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 180px;
    flex-wrap: wrap;
}

button{
    width: 200px;
    height: 125px;
    border-radius: 20px;
    margin: 50px;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(40px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

button a{
    text-decoration: none;
    color: black;
    font-size: x-large;
    margin-left: 20px;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
}

p{
  background: #cfcfcf;
  background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
  background-clip: text ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*hover*/

.link {
    height: 30px;
    align-items: center;
    color: #cfcfcf;
    text-decoration: none;
    display: flex;
    justify-content: center;
  }
  
  /* Hide extra text */
  .mask {
    position: relative;
    padding: 0;
    height: 20px;
  
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  
  .link-container {
    transition: transform 0.4s ease;
  }
  
  .title {
    display: block;
  
    /*  Set same font-size and line height  */
    line-height: 20px;
  
    transition: transform 0.4s ease;
  }
  
  .link-title1 {
    transform-origin: right center;
    background: #cfcfcf;
  background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
  background-clip: text ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;

  }
  
  .link-title2 {
    transform-origin: left center;
    transform: rotate(20deg);
    background: #cfcfcf;
    background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
    background-clip: text ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;

  }
  
  /* Hover Action*/
  
  /* Move up two texts (20px = font-size) */
  .link:hover .link-container {
    transform: translateY(-20px);
  }
  
  /* Rotate texts a little bit */
  .link:hover .link-title1 {
    transform: rotate(20deg);
  }
  
  .link:hover .link-title2 {
    transform: rotate(0);
  }

  span {
    color: black;
  }
