/* CSS pour Portfolio */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@500&family=Tilt+Neon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

/** {
    font-family: 'Heebo', sans-serif;
}*/

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding: .5em;
  font-size: large;
  z-index: 9999;
  font-family: 'Righteous', cursive;
}

header {
  left: 0;
  right: 0;
  top: 0;
  background-color: #686868;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: .5em;
  font-size: large;
  z-index: 9999;
  font-family: 'Righteous', cursive;
}

/* autre */
/* Reset some basic elements */
@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Ubuntu:wght@300&display=swap');

* {
  font-family: 'Kanit', sans-serif;
}

html {
  background: linear-gradient(0deg, rgba(233, 236, 243, 1) 0%, rgba(233, 236, 243, 1) 50%, rgb(193, 199, 212) 100%);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 3.5vh;
  margin-bottom: 20px;
  text-align: center;
}

.links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

.link {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70px;
  width: 500px;
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  background-color: #ffffffb2;
  box-shadow: 0px 0px 5px #ccc;
  transform-origin: center;
  transition: .2s ease-in-out !important;
}

.link:hover {
  box-shadow: 0px 5px 9px #999999a8;
  transform: translateY(-3px);
}

.icon {
  height: 40px;
  width: 40px;
  border-radius: 10%;
}

.instaRef {
  background-color: black;
  color: white;
  padding: 3px;
  margin: 3px;
  border-radius: 10%;
  font-size: 13px;
  transform-origin: center;
  transition: .2s ease-in-out !important;
}

.instaRef:hover {
  background-color: white;
  color: black;
  box-shadow: 0px 0px 10px #ccc;
}

.back {
  height: 80px;
  width: 80px;
}

a {
  text-decoration: none;
  color: black;
}

* {
  box-sizing: border-box;
}

p {
  margin-left: 1em;
}

/* Style the search field */
form.example input[type=text] {
  padding: 10.4px;
  font-size: 20px;
  border: 3px solid #686868;
  float: left;
  width: 80%;
  background: #f1f1f1;
  box-shadow: 0px 0px 10px #ccc;
}

/* Style the submit button */
form.example button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #2c2c2c;
  color: white;
  font-size: 17px;
  border: 3px solid #686868;
  box-shadow: 0px 0px 10px #ccc;
  border-left: none;
  /* Prevent double borders */
  cursor: pointer;
}

form.example button:hover {
  background: #000000;
}

/* Clear floats */
form.example::after {
  content: "";
  clear: both;
  display: table;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

select,
option {
  color: #2c2c2c;
  font-size: large;
  background-color: #dad7d1;
  border: #f0ede6;
  display: block;
  margin: 0 auto;
  width: 500px;
}

select:hover,
option:hover {
  font-weight: 2000;
  background: #2c2c2c;
  box-shadow: 0 0 10px 100px #c7c5bf inset;
}

::-moz-selection {
  /* Code for Firefox */
  color: #f0ede6;
  background: #2c2c2c;
}

::selection {
  color: #f0ede6;
  background: #2c2c2c;
}

p.description {
  width: 30vw;
  font-size: 15px;
  line-height: 25px;
  margin-top: 4em;
  margin-bottom: -3em;
  margin-left: 0;
  margin-right: 0;
}

@media only screen and (max-width: 599px) {
  .link {
    width: 90vw;
  }

  p.description {
    min-width: 88vw;
    font-size: 13px;
    text-align: justify;
  }
}