@font-face {
  font-family: ogg;
  src: url("fontes/Ogg-Regular.woff") format("woff"),
    url("fontes/Ogg-Regular.woff2") format("woff2");
}

::selection{
  color: var(--color);
  background-color: white;
}

:root{
  --color: rgb(152, 55, 0);
  --fs : 2.1vw;
  --marge : 2.2vw;
}

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


body{
  margin:  0 auto;
  color: white;
  line-height: 1.15;
  font-size: var(--fs);
  background-color: var(--color);
  font-family: ogg;
}

#intro{
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
}

#backgroundImage{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#backgroundImage img{
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
}

#intro h1{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

#description{
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  vertical-align: center;
  justify-content: center;
  gap: var(--marge);
  height: 100vh;
}
#description p{
  width: 80%;
  text-align: center;
}

#images{
  display: flex;
  width: 100%;
  position: relative;
  text-align: center;
}


.colonne{
  width: 50%;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  margin: var(--marge);
  vertical-align: top;
  margin-bottom: 0;
}

.colonne picture{
  max-width: 100%;
  display: block;
  height: auto;
  padding-bottom: var(--marge);
}

#col1{
  margin-right: 0;
}

#col2{
  margin-left: 0;
  align-items: flex-end;
}

#col1 picture:nth-of-type(1){
  width: 85%;
}

#col2 picture:nth-of-type(1){
  display: block;
  position: relative;
  width: 60%;
}

#col1 picture:nth-of-type(2){
  width: 70%;
  margin-left: 30%;
}

#col2 picture:nth-of-type(2){
  width: 90%;
}


#col2 picture:nth-of-type(3){
  width: 90%;
}

#bottom{
  display: block;
  position: relative;
  height: 100vh;
  width: 100%;
}

#collection{
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  
}

#footer{
  display: flex;
  padding: var(--marge);
  position: absolute;
  bottom: 0;
  width: 100%;
  justify-content: space-between;
}

@media (orientation:portrait){

  :root{
    --fs : 4.5vw;
    --marge : 4.5vw;
  }

#backgroundImage{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#description br{
  display: none;
}

#description span{
  display: block;
  height: var(--marge);
  width: 100%;
}

#description p{
  width: 90%;
}


#description p:last-of-type br{
  display: block;
}

#backgroundImage img{
  min-width: 100%;
  min-height: 150%;
  display: block;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  object-fit: cover;
}

#images{
  display: block;
}

.colonne{
  width: calc(100% - 2*(var(--marge)));
  display: flex;
}

#col1{
  margin-bottom: 0;
}

#col2{
  margin-top: 0;
  margin-left: var(--marge);
}

#col1 picture:nth-of-type(1){
  width: 90%;
}

#col2 picture:nth-of-type(1){

  width: 75%;
}

#col1 picture:nth-of-type(2){
  width: 70%;
  margin-left: 30%;
}

#col2 picture:nth-of-type(2){
  width: 100%;
}


#col2 picture:nth-of-type(3){
  width: 75%;
  margin-right: 25%;
}

#footer{
  flex-wrap: wrap;
  gap:  var(--marge) 0 ;
}

#footer div{
  width: 50%;
}


}