body {
  font-family: "Lato";
  font-weight: 400; /* Regular */
}

.projet {
  position: fixed;
  height: 100%;
  width: 50%;
  left: 0%;
  top: 0%;
  background-color: whitesmoke;
  color: black;
}

.projet:hover {
  background-color: #ffede8;
  color: #fa4918;
}

.propos {
  position: fixed;
  height: 100%;
  width: 50%;
  right: 0%;
  top: 0%;
  background-color: whitesmoke;
  color: black;
}

.propos:hover {
  background-color: #ffede8;
  color: #fa4918;
}

.full-clickable {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  font-size: 64px;
}

@media (max-width: 500px) {
  .projet {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 100%;
    text-align: center;
  }
  .propos {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
    width: 100%;
    text-align: center;
  }
  a{
    font-size: 48px;
  }
}
