body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-image: linear-gradient(to right, #e8e8e8, #dfdfdf, #d6d6d6);
}

#header,
#nav-bar {
  display: flex;
  justify-content: start;
}

#header {
  padding: 0.4rem;
  position: sticky;
  top: 0;
  background-image: linear-gradient(to right, #e8e8e8, #dfdfdf, #d6d6d6);
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.4);
}

#nav-bar {
  margin-left: auto;
}

#header-img {
  height: 50px;
  width: 50px;
}

.nav-link {
  font-size: 1.4rem;
}

@media (max-width: 841px) {
  #landing-heading h1 {
    padding-top: 6rem !important;
    font-size: 6rem !important;
  }
}

@media (max-width: 768px) {
  #landing-heading h1 {
    font-size: 4rem !important;
    padding: 1.5rem !important;
    background-color: rgba(255, 255, 255, 0.5);
    border: 4px solid black;
  }
  #landing-heading p {
    font-size: 1.5rem !important;
  }
  .row {
    flex-direction: column-reverse;
  }
  .container,
  .col-6 {
    width: 90vw !important;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-content: center;
  }
}

@media (max-width: 567px) {
  #header {
    justify-content: center;
    flex-wrap: wrap;
  }
  #nav-bar {
    margin-left: inherit;
  }
  #landing-heading h1 {
    padding-top: 2rem !important;
    font-size: 3rem !important;
  }
  #landing-heading p {
    font-size: 1.2rem !important;
  }
  .landing {
    min-height: 50vh;
  }
  #video {
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 387px) {
  #landing-heading h1 {
    font-size: 2.3rem !important;
  }
  #landing-heading p {
    font-size: 1.2rem !important;
  }
}

#brand-name,
.nav-link {
  font-weight: bold;
  padding: 0.7rem;
  color: black;
  text-decoration: none;
  transition: text-shadow 0.3s ease-out;
}

#brand-name:hover,
.nav-link:hover {
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

#brand-name {
  font-size: 1.7rem;
}

.landing {
  background-image: url("https://unsplash.com/photos/9_Dollf_7aI/download?force=true&w=1920");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 90vh;
}

#landing-heading h1 {
  padding: 0;
  margin: 0;
  font-size: 7rem;
  text-shadow: 0px 3px 1px white, 1px 2px 3px black;
}
#landing-heading p {
  font-size: 2.3rem;
  font-weight: bold;
  text-shadow: 1px 3px 2px white, 1px 2px 1px black;
}

#landing-heading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  padding: 1rem;
}

.text-center {
  text-align: center;
}
.d-flex,
#landing-heading {
  display: flex;
}

.highlight {
  background-color: white;
  color: black;
  padding: 0.4rem;
  border: 4px solid black;
  border-radius: 1rem;
}
.highlight-black {
  background-color: black;
  color: white;
  border: 4px solid white;
  margin: auto;
}
.highlight,
.highlight-black {
  padding: 0.4rem;
  border-radius: 1rem;
}
.row {
  display: flex;
}
.col-6 {
  width: 80vw;
  min-height: 50vh;
  margin: auto;
}
.process {
  border-top: 2px solid black;
}

.process p {
  font-size: 1.2rem;
}
#video {
  width: 100%;
  margin: auto;
  height: 70vh;
}

.w-90 {
  width: 90%;
  margin: auto;
}

#making {
  margin: 1rem;
  padding: 1rem;
}

.highlight-black h1 {
  font-size: 2rem;
}
.highlight-black h1 i {
  text-shadow: 1px 2px 1px rgba(255, 255, 255, 0.2),
    1px 2px 1px rgba(0, 0, 0, 0.2), 1px 2px 1px rgba(255, 255, 255, 0.2);
  text-decoration: underline;
}

.container {
  padding: 0.3rem;
  margin: auto;
}

.justify-content-center {
  display: flex;
  flex-wrap: column;
  justify-content: center;
}
.btn {
  padding: 0.6rem;
  margin: 0.6rem;
  border-radius: 2rem;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.9);
  transition: 0.4s ease-in-out;
  font-weight: 800;
}

.btn:hover {
  box-shadow: 2px 5px 14px black;
}

.d-flex {
  flex-wrap: wrap;
}

.btn-red {
  background-color: #c00;
  color: white;
}

.btn-brown {
  background-color: brown;
  color: white;
}

.btn-orange {
  background-color: orange;
  color: black;
}

.btn-vanilla {
  color: grey;
}

.btn-green {
  background-color: greenyellow;
  color: green;
}

#contact h1 {
  font-size: 3rem;
}

#form {
  padding: 1rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
label,
input,
input::placeholder,
textarea {
  font-size: 1.3rem;
  border-radius: 1rem;
  padding: 0.5rem;
  width: 90%;
  margin: 1rem;
}

label {
  text-decoration: underline;
}
input[type="submit"] {
  width: 50%;
}

input[type="submit"]:hover {
  background-color: white;
  color: black;
}

.col-6,
#contact {
  margin-top: 2rem;
}
