/* fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;600&display=swap');


@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Existing Styles */

body {
  background-color: white;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
}

a {
  color: black;
  font-weight: 600;
}

.galleryPicture {
  width: 100%;
  border: none;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.galleryPicture.visible {
  opacity: 1;
}

p {
  margin-bottom: 32px;
}


#imageContainer {
  display: block;
  text-align: right;
  width: 70vw;
  padding-top: 8vh;
  padding-bottom: 250px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: 0px;
}

#logo {
  padding-left: 30px;
  padding-top: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 38vw;
  z-index: 1000;
}


#infosDesktop {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 250px;
  color: black;
  text-align: left;
  padding: 20px;
  font-size: 14px;
  line-height: 1.35;
  z-index: 999;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 1.5s ease-in-out 1.2s forwards;
}

#infosMobile {
  display: none;
}

#links {
  font-weight: 600;
}

#end {
  background-color: red;
}

/* BREAKPOINT TABLETTE */
@media only screen and (max-width: 1000px) {

  #logo {
    width: 327px;
  }

  #infosDesktop {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 160px;
    color: black;
    text-align: left;
    padding: 20px;
    font-size: 12px;
    line-height: 1.3;
    z-index: 999;
    text-transform: uppercase;
  }

  #infosMobile {
    display: none;
  }
}



/* BREAKPOINT MOBILE */
@media only screen and (max-width: 710px) {
  #logo {
    padding-left: 14px;
    padding-top: 28px;
    width: 300px;
  }

  body {
    margin: 0px;
    padding: 0px;
  }

  p {
    margin-bottom: 12px;
  }


  #infosMobile {
    text-align: left;
    display: inline-block;
    margin: 16px;
    padding-right: 40px;
    margin-top: 280px;
    margin-bottom: 40px;
    color: black;
    font-size: 13px;
    line-height: 1.4;
    z-index: 999;
    text-transform: uppercase;
    animation: fade-in 0.2s linear;
  }

  #infosDesktop {
    display: none;
  }

  #imageContainer {
    display: block;
    text-align: left;
    width: 100vw;
    padding-top: 0px;
    padding-bottom: 250px;
    padding-right: 0px;
    margin-left: 0;
    margin-right: 0px;
  }

}