body {
  font-family: 'Poppins';  
  margin: 0;
  min-height: 265vh;
  display: flex;
  flex-direction: column;
}

h1 { 
  color: rgb(0, 0, 0);
}

/* NAVIGATION */

nav {
  background-image: url('../images/heroimage1.jpg');
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 50%;
  margin: 0;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.small-button {
  background-color: #875C45;
  border: none;
  padding: 5px 10px;
}

.logo {
  background-image: url(../logos/ekastudio-finallogo.svg);
  width: 50px;
  background-repeat: no-repeat;
  padding-left: 50px;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-left: 1rem;
  margin-top: 1rem;
  margin-right: 1rem;
  flex: calc(100% / 3);
}

.ul {
  align-self: center;
}

.heroimage1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 50px;
}

.menu {
  display: flex;
}

li {
  /* spacing links */
  /* 0 margin on top and bottom, 15px left and right */
  margin: 0 0 0 25px;
  /* remove bullets */
  list-style-type: none;
}

.menu li a {
  color: black;
  font-size: 1.15rem;
  /* remove underline */
  text-decoration: none;
}

.menu li a:hover {
  color: gray;
  /* remove repeating images on smaller images */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.gallery {
  width: 100%;
  height: 50%;
}

.row {
  display: flex;
  width: 100%;
  height: 400px;
  margin-top: 1rem;
  justify-content: center;
}

.thumbnail {
  width: 100%;
  height: 100%;
  /* background sizing */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#img1 {
  background-image: url(../images/tops.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
  margin-right: 1rem;
}

#img2 {
  background-image: url(../images/dresses.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
  margin-right: 1rem;
}

#img3 {
  background-image: url(../images/shoes.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
}

/* HERO IMAGE 2 */

.heroimage2 {
  background-image: url(../images/heroimage2.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50%;
  background-repeat: no-repeat;
  align-items: flex-end;
  justify-content: center;
  display: flex;
  padding-bottom: 40px;
  margin-top: 30px;
}

.small-button {
  background-color: #875C45;
  padding: 10px 15px;
  border: none;
}

.gallery {
  width: 100%;
  height: 50%;
}

.row {
  display: flex;
  width: 100%;
  height: 400px;
  margin-top: 1rem;
  justify-content: center;
}

.thumbnail {
  width: 100%;
  height: 100%;
  /* background sizing */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.thumbnail img,
.thumbnails img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

#img4 {
  background-image: url(../images/newyork.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
  margin-right: 1rem;
}

#img5 {
  background-image: url(../images/vancouver.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
}

#img6 {
  background-image: url(../images/sydney.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
  margin-left: 1rem;
}

/* FOOTER */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

footer {
  background-color: #875C45;
  margin-top: 1rem;
}

.footerContainer {
  width: 100%;
  padding: 70px 30px 20px;
}

.socialIcons {
  display: flex;
  justify-content: center;
}

.socialIcons a {
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}

.socialIcons a i {
  font-size: 2em;
  color: #875C45;
  opacity: 0.9;
}

/* Hover effect on social media icon */
.socialIcons a:hover {
  background-color: #111;
  transition: 0.5s;
}

.socialIcons a:hover i {
  color: white;
  transition: 0.5s;
}

.footerNav {
  margin: 30px 0;
}

.footerNav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

.footerNav ul li a {
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;
}

.footerNav ul li a:hover {
  opacity: 1;
}

.footerBottom {
  background-color: #000;
  padding: 20px;
  text-align: center;
}

.footerBottom p {
  color: white;
}

.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

@media (max-width: 700px) {
  .footerNav ul {
    flex-direction: column;
  }
  .footerNav ul li {
    width: 100%;
    text-align: center;
    margin: 10px;
  }
  .socialIcons a {
    padding: 8px;
    margin: 4px;
  }
}

/* MEDIA QUERIES */

/* TABLET */

@media only screen and (max-width: 768px) {
  nav {
    background-color: lightblue;
  }
}

/* MOBILE */

@media only screen and (max-width: 576px) {
  .heroimage2 {
    background-position: right;
  }

  #img1 {
    background-image: url(../images/tops1-mobile.jpg);
  }
}
