/*  Add your styling here */

* {
  margin: 0;
}
#navbar {
  display: flex;
  justify-content: space-around;
  background-color: #f4978e;
}
#logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding: 10px 0 10px 10px;
}
#logo img {
  width: 50%;
}

#hamburger {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}
#hamburger img {
  width: 10%;
}
#slogan {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 10px;
}
h1 {
  font-family: "Caveat Brush", cursive;
  font-size: 1.5rem;
  text-align: end;
}
main {
  background-color: #fbc4ab;
  padding: 10px;
}
#navbar-btn {
  display: none;
}
#image img {
  width: 100%;
}
#welcome {
  padding: 20px 0;
}
#welcome h2 {
  font-family: "Harmattan", sans-serif;
  font-family: "Michroma", sans-serif;
  padding-bottom: 20px;
  font-size: 1.2rem;
}
#welcome p {
  font-family: "Harmattan", sans-serif;
  font-family: "Michroma", sans-serif;
  font-size: 0.7rem;
  text-align: justify;
}
#album {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
#album div {
  width: 45%;
  margin-top: 10px;
}
#album div img {
  width: 100%;
  height: 100%;
}
footer {
  background-color: #f4978e;
  padding: 10px;
}
#contact-us {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
}
#contact-us a {
  font-family: "Michroma", sans-serif;
  font-size: 0.6rem;
  text-decoration: none;
}
#social-media img {
  width: 5%;
  padding: 5px 5px 0 0;
}
#copy-right {
  display: flex;
  justify-content: center;
  color: gray;
  font-size: 0.7rem;
  padding: 15px 0px 5px 0px;
}

@media (min-width: 540px) {
  main {
    background-color: rgba(60, 138, 155, 0.721);
  }
  .image-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #image {
    order: 1;
    width: 40%;
  }
  #welcome {
    order: 2;
    width: 40%;
  }
  #album div {
    width: 20%;
    margin-top: 10px;
  }
  #welcome h2 {
    text-align: right;
  }
  #welcome p {
    text-align: justify;
  }
}

@media (min-width: 900px) {
  main {
    background-color: #b56576;
  }
  #album div {
    width: 24%;
    margin-top: 10px;
  }
  #hamburger img {
    display: none;
  }
  #navbar section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #navbar-btn {
    display: flex;
    justify-content: flex-end;
    background-color: #f4978e;
  }
  #navbar-btn button {
    background-color: #b2967d;
    border: none;
    border-radius: 10%;
    padding: 5px;
    margin: 5px;
  }
  #contact-us {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 100px;
    align-items: center;
  }
  #contact-us a {
    width: 30%;
    text-align: center;
    font-size: 0.8rem;
  }
  #contact-us div {
    width: 30%;
    display: flex;
    justify-content: center;
  }
  #social-media img {
    width: 60%;
  }
}
