* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
}

body {
  margin: 20px;
  padding: 0;
  background: #333;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 2rem;
}

p {
  font-size: 1.8rem;
}

button {
  padding: 2rem 6rem;
  background: transparent;
  font-size: 2rem;
  font-weight: 700;
  color: rgb(220, 76, 15);
  outline-style: dotted;
  border-style: none;
  outline-color: rgb(220, 76, 15);
  outline-width: 1px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

button:hover {
  outline-style: solid;
}

button:focus {
  outline-style: solid;
}

#home {
  position: absolute;
  top: 0;
}

#main-head {
  background: rgb(27, 27, 27);
  color: white;
  position: sticky;
  top: 0px;
  z-index: 3;
}
#main-head nav {
  display: flex;
  width: 100%;
  margin: auto;
  min-height: 10vh;
  padding: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
#main-head nav ul {
  display: flex;
  flex: 1 1 40rem;
  justify-content: space-around;
  align-items: conter;
  list-style: none;
}
#main-head nav ul a {
  color: rgb(220, 76, 15);
  font-size: 2.5rem;
  font-weight: 400;
}

#logo {
  flex: 2 1 40rem;
  font-size: 2.5rem;
}

#hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9), transparent, rgba(0, 0, 0, 0.9)), url("../img/this-one.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-wrapper {
  background: rgba(27, 27, 27, 0.8);
  width: 60%;
  border-radius: 2rem;
  padding: 2rem;
}

#hero p {
  padding: 5rem;
}

#gallery {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9), transparent, rgba(0, 0, 0, 0.9));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#gallery header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 5px;
  padding-bottom: 5px;
}

.gallery-wrapper {
  width: 60%;
  margin: auto;
  border: transparent solid 3px;
  background: transparent;
}

.main-img img,
.imgs img {
  width: 100%;
}

.imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3px;
}
.imgs img {
  cursor: pointer;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

#contact {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9), transparent, rgba(0, 0, 0, 0.9)), url("../img/img9.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  background: rgba(27, 27, 27, 0.8);
  width: 70%;
  color: white;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.form-wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.form-head {
  text-align: center;
  padding: 3rem;
}

form div {
  width: 100%;
  display: flex;
  justify-content: center;
}

#name-area {
  display: flex;
  align-items: center;
}

#name {
  width: 50%;
  height: 3rem;
  margin-left: 1rem;
}

#email-area {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#email {
  width: 50%;
  height: 3rem;
  margin-left: 1rem;
}

#dont-show-this {
  display: none;
}

#message {
  width: 60%;
  height: 20rem;
}

#clickit {
  margin-top: 2rem;
}

footer {
  color: white;
  background: linear-gradient(rgba(0, 0, 0, 0.9), transparent);
  height: 20vh;
}

.footer-wrapper {
  display: flex;
  padding: 2rem;
  width: 90%;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

footer h3 {
  flex: 1 1 50rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex: 1 1 40rem;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1084px) {
  .footer-wrapper {
    text-align: center;
    width: 50%;
  }
  footer h3 {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 932px) {
  nav {
    text-align: center;
  }
  #logo {
    padding: 2rem;
  }
  .hero-wrapper {
    width: 95%;
  }
  .gallery-wrapper {
    width: 80%;
  }
  .form-wrapper {
    width: 95%;
  }
  #name {
    width: 65%;
  }
  #email {
    width: 65%;
  }
  #message {
    width: 80%;
  }
}
@media screen and (max-width: 429px) {
  #hero p {
    padding: 1rem;
  }
}
@media screen and (max-width: 419px) {
  .this-one a {
    font-weight: 100;
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=styles.css.map */