@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* GENERAL */

/* Palette de couleurs: */
:root {
  --color1: #474dff;
  /* Fond gris clair: */
  --color2: #1f1e1e;
  --color3: #f0eeee;
  /* background du footer: */
  --color4: #070707;
}

* {
  /* Chacun des éléments de la page ont un padding de 5px ! et on ne pourra pas le changer ! */
  padding: 5px;
  margin: 0px;
  /* Pour éviter que les boîtes partent dans tous les sens: */
  box-sizing: border-box;
  /* On met la font dans le * : et sans-serif par défaut si ca ne marche pas. */
  font-family: "Inter", sans-serif;
  font-style: normal;
  color: white;
  cursor:none;
}

li {
  list-style: none;
}

p {
  font-size: 0.7rem;
}

body {
  background-color: var(--color2);
  min-height: 100vh;
  color: var(--color3);
  /* overflow: hidden; */
}

/* Menu de navigation: hearder */
nav {
  /* display: flex;
  align-content: center; */
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr;
  padding: 0px 20px;
}

nav h3 {
  width: 50%;
  /* Astuce pour centrer h3 quand il s'agrandit */
  transform: translate(-10%);
  transition: 0.5s ease;
  z-index: 1;
}

nav ul {
  /* display: flex;
  justify-content: space-between; */
  display: grid;
  justify-items: end;
  grid-template-columns: repeat(3, 1fr);
  font-size: 0.8rem;
  z-index: 1;
}

nav li {
  transition: 0.5s ease;
}

li:hover {
  transform: scale(1.5);
  color: var(--color1);
  font-weight: 700;
  cursor: pointer;
}

h3:hover {
  transform: scale(1.4);
  color: var(--color1);
  font-weight: 700;
  cursor: pointer;
}



/* Menu principal: Main */

main {
  /* display: flex;
  align-items: center; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 72vh;
}

/* Style des ronds qui suivent la souris */
.mousemove_small {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #2128bd;
  border-radius: 50%;
  transition: 0.1s ease;
  mix-blend-mode: difference;
}

/* normal, multiply, screen, overlay, darken, lighten, color-dodge, color-burn, hard-light, soft-light, difference, exclusion, hue, saturation, color, et luminosity. */

.mousemove_middle {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  transition: 0.13s ease;
  mix-blend-mode: difference;
}

.mousemove_large {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgb(41, 41, 41);
  border-radius: 50%;
  transition: 0.18s ease;
  mix-blend-mode: difference;
}

.main-left {
  display: grid;
  justify-content: center;
  align-items: center;
  /* display: flex;
  justify-content: center; */
}

.main-left-container {
  width: 100%;
}

.main-left-container h1 {
  font-size: 5rem;
  font-weight: 600;
}

.main-left-container h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color1);
  margin: 10px 0px;
}

.main-left-container p {
  /* Si on veut que le paragraphe face max 2 lignes tout le temps: */
  /* display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-clamp: 2;
overflow: hidden; */
  text-align: justify;
  line-height: 14px;
  max-width: 700px;
}

.main-right {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.main-right img {
  width: 75%;
  /* Centrer l'image dans son container: */
  align-self: center;
  justify-self: center;
}

/* Footer */

footer {
  /* display: flex;
  justify-content: space-between; */
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-items: start;
  align-items: center;
  background: var(--color4);
  border-radius: 15px;
}

.footer-left {
  /* display: flex;
  flex-direction: column;  */
}

.btn-container {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  display: grid;
}

.btn-container button {
  background: var(--color1);
  color: var(--color3);
  height: 30px;
  width: 140px;
  letter-spacing: 0.8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border: none;
  /* haut/bas dr/gche*/
  margin: 5px 0px;
  text-shadow: rgba(255, 255, 255, 0.4) 0 0 4px, rgba(255, 255, 255, 0.2) 0 0 12px, rgba(57, 31, 91, 0.6) 1px 1px 4px, rgba(57, 31, 91, 0.32) 4px 4px 16px;
  z-index: 1;
  transition: 0.5s ease;
}

button:hover {
  transform: scale(1.2);
  color: var(--color1);
  background: var(--color3);
  cursor: pointer;
  border: 1px solid #474dffb1;
  
}

.footer-right {
  /* display: flex;
  flex-direction: column; */
  display: grid;
  width: 100%;
  height: 100%;
}

.footer-right h4 {
  margin: 0px 60px;
}

.investors-containers {
  /* display: flex;
  justify-content: space-around; */
  /* Permet de voir l'img en entier: */
  /* align-items: center; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
}

.investors-containers img {
  width: 65%;
}

/* Pour règler les tailles des logos indépendemment :*/
#GV {
  width: 55%;
}

#First {
  /* width: 13%; */
}

#Khosla {
  /* width: 9%; */
}


/* *********************MEDIA QUERIES********************************* */


/* A savoir: tablette: entre 700 et 900px */
/* Quand on fait du mobile FIRST: (min-width:...px) */

/* Maquette IPad: */
@media screen and (max-width: 850px) {
  .main-left-container h1 {
    font-size: 4rem;
  }

  .main-left-container h2 {
    font-size: 1.4rem;
  }
}

/* Maquette mobile: */
@media screen and (max-width: 590px) {
  nav ul {
    justify-items: center;
  }

  main {
    grid-template-columns: 1fr;
    /* OU : display: block; */
  }

  .main-left-container h1 {
    font-size: 2.5rem;
  }

  .main-left-container h2 {
    font-size: 1.2rem;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .footer-left {
    text-align: center;
  }

  .footer-right h4 {
    text-align: center;
  }
}