main {
  min-height: 100vh;
}

.box {
  padding: 2rem;
  color: rgb(255, 255, 255);
}

.box h1 {
  font-family: "semibold";
  font-size: 300%;
  margin-left: 0rem;
}

.box .content {
  margin-left: 2rem;
}

.box .wrapper {
  background-color: rgba(189, 189, 189, 0.3);
  border-radius: 1rem;
  display: flex;
  overflow-x: auto;
}

.wrapper::-webkit-scrollbar {
  height: 1em;
}

.wrapper::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: rgba(115, 68, 114, 0.8);
  border: 3px solid black;
}

.wrapper .item {
  min-width: 18rem;
  height: 18rem;
  background-color: gray;
  margin: 2rem;
  border-radius: 10px;
}

.wrapper .item {
  position: relative;
  color: white;
}

.wrapper .item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.2s;
}

.wrapper .item:hover img {
  transition: 0.2s;
  box-shadow: 0 0 20px rgba(47, 47, 47, 0.4);
  transform: scale(1.05);
}

.box .content p {
  padding-bottom: 1rem;
}

.conteneur1 a {
  background-image: linear-gradient(
    0.25turn,
    rgb(158, 93, 143),
    rgb(188, 65, 123)
  );
  padding: 0.8rem 1.5rem 0.8rem 1.5rem;
  border-radius: 3rem;
  text-decoration: none;
  color: white;
  margin-top: 1rem;
}

.conteneur1 a:hover {
  transition: 0.2s;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  transform: scale(1.005);
}

.bottom-left {
  position: absolute;
  bottom: 10px;
  left: 30px;
}

input {
  font-family: "regular";
  color: white;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  padding: 0.5rem;
  border-radius: 10px;
  width: 20rem;
  text-align: center;
  border: 1px solid white;
}

::placeholder {
  font-family: "regular";
  color: #f5f5f5;
  font-style: italic;
  opacity: 1;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 2.2rem !important;
  }

  .box .wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .conteneur1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .input {
    font-family: "regular";
    color: white;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    padding: 0.5rem;
    border-radius: 10px;
    width: 20rem;
    text-align: center;
    border: 1px solid white;
    display: none !important;
  }

  .input-mobile {
    font-family: "regular";
    color: white;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    height: 30px;
    border-radius: 100px;
    width: 30px;
    text-align: center;
    border: 1px solid white;
    /* position: fixed; */
    margin-left: 20px;
    margin-top: 20px;
  }

  ::placeholder {
    font-family: "regular";
    color: #f5f5f5;
    font-style: italic;
    opacity: 1;
  }
}

@font-face {
  font-family: "regular";
  src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: "semibold";
  src: url("../fonts/Inter-SemiBold.ttf");
}

/* style image s'affichant sur version mobile (MAX 600 PX) */

@media screen and (min-width: 600px) {
  .illustration {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .illustration-cont {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .illustration {
    height: 200px;
  }
}
