
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f7f7f7;
  margin: 3rem;
  overflow-x: hidden;
  max-width: 2000px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;

}
html {
  scroll-behavior: auto;
}

.container {
  margin: 3rem;
}

/*Text--------__*/
.text_container {
  margin-top: 5rem;
  width: 27rem;
  padding: 25px;

}

h1 {
  font-size: 10rem;
  font-family: 'Playfair Display', serif;

}

h2 {
  font-family: 'Playfair Display', serif;
  padding-bottom: 1rem;
}

p {
  font-family: 'Montserrat', sans-serif;
}

.lookdescription {
  max-width: 300px;
  padding-bottom: 1rem;
  font-size: 0.9rem;

}

/*Gallery*/
.row {
  display: flex;
  width: 100%;
}

.row--1 {
  align-items: center;
}


.col img {
  max-width: 100%;
}

.container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 100;
  line-height: 11rem;

}

.bottomline {
  font-size: 1rem;
  font-weight: 300;
  display: block;
  font-family: 'Montserrat', sans-serif;
  padding-top: 1rem;
  max-width: 500px;

}

.container {
  margin-top: 7rem;
}

/*Image Hover*/
.container:not(.container--terre) .col--2-1:hover img, .col--2-3:hover img, .col--3-1:hover img, .col--3-3:hover img {
  background-color: #0e1111;
  opacity: 0.3;
}
.middle {
  position: relative;
}

.col--1-3:hover .middle {
  opacity: 1;
}

.text {
  position: absolute;
  color: black;
  font-size: 16px;
}
/*Buttons*/
.btn-primary {
  color: white;
  background-color: #121111fc;
  border-color: #121111fc;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

a {
text-decoration: none;
}



/*Grid-Layout*/
/*Gallery*/

.col {
  flex-basis: 25%;
  padding: 1rem;
}


.col--1-1 {
  flex-basis: 50%;
}

.col--1-2 {
  flex-basis: 50%;
}
.row--2 .col, .row--3 .col {
  align-self: flex-end;
}

.col--1-3:hover img {
  background-color: #0e1111;
  opacity: 0.3;
}

.col--1-2 img {
  max-height: 500px;
}




/*Queries*/

/* Screen sizes between 1201px and 1500px */
@media only screen and (max-width: 1500px) {
  .container h1 {
    font-size: 9rem;
  }
}

/* Screen sizes between 1024px and 1200px (iPad landscape) */
@media only screen and (max-width: 1200px) {
  .container h1 {
    font-size: 7rem;
  }
  .bottomline {
    font-size: 0.9rem;
  }
  .lookdescription {
    font-size: 0.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }

}

/* Screen sizes between 768px and 1023px (iPad portrait) */
@media only screen and (max-width: 1023px) {
  .container h1 {
    font-size: 6rem;
    line-height: 5rem;
  }
  .row {
    flex-wrap: wrap;
  }

  .col {
    flex-basis: 50%;
  }

}

/* Screen sizes between 350px and 767px (smartphone) */
@media only screen and (max-width: 767px) {
  .row {
    flex-direction: column;
  }
  .container h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
  .row--2 .col {
    align-self: flex-start;
}


}

/* Screen sizes smaller 350px (small smartphone) */
@media only screen and (max-width: 350px) {
}