@import url("photographer.css");
html {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
a {
  text-decoration: none;
}

header a {
  margin-left: 100px;
}

@media screen and (max-width: 512px) {
  header a {
    padding: 0;
    margin: 0 auto;
  }
}

h1 {
  color: #901c1c;
  margin-right: 100px;
}

.logo {
  height: 50px;
}

.photographer_section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  margin: 100px 0;
}

.photographer_section article {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.photographer_section article a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.photographer_section article .name {
  color: #d3573c;
  margin: 0;
  font-size: 2.5vmax;
  font-weight: normal;
}

.photographer_section article img {
  height: 200px;
  width: 200px;
  margin-bottom: 35px;
  object-fit: cover;
  border-radius: 50%;
}

.photographer_section article .location {
  font-size: 1.3vmax;
  margin: 5px;
  font-weight: 550;
  color: #901c1c;
}

.photographer_section article .tagline {
  font-size: 1vmax;
  margin: 5px;
}

.photographer_section article .price {
  color: #757575;
}
