body, html {
  font-family: Hedvig Letters Sans;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.btns {
  display: flex;
  width: 30%;
  align-items: flex-end;
  justify-content: space-between;
}

.logo {
  width: 200px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.hero img {
  width: 75%;
}

.hero h1 {
  font-size: 3em;
}

.herobtns {
  margin-bottom: 3em;
  transition: 0.5s;
}

.hero p {
  width: 50%;
}

.row {
  display: flex;
  flex-direction: row;
  margin: 2em;
}
 
.rowcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.rowcard img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(50%);
}

.Visit {
  background-color: white;
  transition: 0.5s;
}

.Book, .Visit {
  transition: 0.5s;
  cursor: pointer;
  border: black solid 1px;
  padding: 10px 15px;
  border-radius: 2px;
}

.Book:hover, .Visit:hover {
  scale: 105%;
}

.Book {
  background-color: black;
  color: white;
}

.awaitsleft {
  scale: 125%;
  text-align: center;
  width: 30%;
  align-self: center;
}

.btns a {
  transition: 0.5s;
}

.btns a:hover {
  font-weight: bold;
  scale: 105%;
}

#services, .row{
  flex-wrap: wrap;
}

.herobtns:hover {
  transition: 0.5s;
  scale: 105%;
}

.awaitsyou {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin: 2em;
  scale: 90%;
}

.barberpfp {
  width: 300px;
  height: 350px;
  object-fit: cover;
  object-position: 75% 100%;
}

.Visit {
  color: black;

}

.rowtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}


.barber {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75%;
  text-align: center;
  padding-bottom: 10%;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .btns {
    width: 40%;
  }
  
  .hero img {
    width: 40vw;
  }

  .awaitsright img {
    width: 90%;
  }

  .awaitsyou {
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
    margin-top: 5%;
  }
}

@media (max-width: 768px) {
  .btns {
    width: 50%;
  }

  .row {
    display: block;
  }

  .rowcard {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .testimonial {
    scale: 90%;
    margin: 1em;
    text-align: center;
    justify-content: center;
  }

  .grid {
    display: block;
  }

  .row, .rowcard {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 425px) {
  .btns {
    display: none;
  }
    body, html {
    display: flex;
    flex-direction: column;
    align-items: center;
    }

  .logo, nav {
    display: none;
  }

  .hero h1 {
    text-align: center;
    scale: 80%;
  }

  .herobtns {
    scale: 125%;
  }

  .hero img {
    width: 80vw;
  }

  #services {
    display: none;
  }

  .rowinfo {
    width: 75vw;
    text-align: center;
  }

  .awaitsright {
    display: none;
  }

  .awaitsleft {
    width: 80vw;
  }
  
  .awaitsbtns {
    margin-bottom: 5%;
  }
}