* {
  margin: 0px;
  padding: 0px;
}

body {
  height: 100%;
  font-family: 'Lato', sans-serif;
  background-color: rgb(249, 241, 227);
  color: rgb(34, 34, 34);
}

.site {
  display: flex;
  flex-direction: column;
  
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-right: 6%;
  padding-bottom: 22px;
  padding-left: 6%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brandimg {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.brandname {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: rgb(88, 20, 22);
}

.brandsub {
  font-size: 13px;
  color: rgb(105, 105, 105);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navlink {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgb(88, 20, 22);
  padding-top: 10px;
  padding-right: 14px;
  padding-bottom: 10px;
  padding-left: 14px;
}

.navlink:hover {
  color: rgb(198, 147, 29);
}

.hero {
  position: relative;
  margin-top: 18px;
  margin-right: 6%;
  margin-bottom: 0px;
  margin-left: 6%;
  border-radius: 12px;
  min-height: 320px;
}

.heroimg {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.herocopy {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(255, 255, 255);
  text-align: center;
}

.herocopy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin-top: 44px;
  margin-right: auto;
  margin-bottom: 44px;
  margin-left: auto;

  padding-right: 6%;

  padding-left: 6%;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.profile img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}


.bio h2  .any {
  font-family: 'Playfair Display', serif;
  color: rgb(88, 20, 22);
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
}

.bio p {
  color: rgb(105, 105, 105);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 16px;
}

.bio h3 .any {
  font-family: 'Playfair Display', serif;
  color: rgb(198, 147, 29);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}


@media screen and (max-width: 550px) {
  .header {
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
  }

  .brandimg {
    height: 60px;
    width: 60px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero {
    margin-top: 10px;
    margin-right: 4%;
    margin-bottom: 0px;
    margin-left: 4%;
    min-height: 240px;
  }

  .heroimg {
    height: 240px;
  }

  .herocopy h1 {
    font-size: 28px;
  }

  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio h2 {
    font-size: 20px;
  }

  .bio p {
    font-size: 14px;
  }

  .profile img {
    height: 260px;
  }
}

@media screen and (min-width: 551px) and (max-width: 900px) {
  .header {
    padding-top: 18px;
    padding-right: 5%;
    padding-bottom: 18px;
    padding-left: 5%;
  }

  .brandimg {
    height: 65px;
    width: 65px;
  }

  .hero {
    margin-top: 14px;
    margin-right: 5%;
    margin-bottom: 0px;
    margin-left: 5%;
    min-height: 280px;
  }

  .heroimg {
    height: 280px;
  }

  .herocopy h1 {
    font-size: 36px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bio h2 {
    font-size: 22px;
  }

  .bio p {
    font-size: 15px;
  }

  .profile img {
    height: 300px;
  }
}

@media screen and (min-width: 901px) {
  .header {
    padding-top: 22px;
    padding-right: 6%;
    padding-bottom: 22px;
    padding-left: 6%;
  }

  .heroimg {
    height: 340px;
  }

  .bio h2 {
    font-size: 26px;
  }

  .bio p {
    font-size: 16px;
  }

  .profile img {
    height: 360px;
  }
}
