@import url("photographer.css");

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

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

a {
  text-decoration: none;
}

h1 {
  color: #901c1c;
  margin-right: 100px;
  font-size: 36px;
  font-weight: 400;
}

.logo {
  height: 50px;
  margin-left: 100px;
  cursor: pointer;
}

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

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

.photographer_section article h2 {
  color: #d3573c;
  font-size: 36px;
  font-weight: 400;
  margin: 10px 0 0 0;
  padding: 0;
}

.photographer_section article img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photographer_section article .location {
  color: #901c1c;
  font-family: "DM Sans";
  font-size: 20px;
  font-weight: 400;
}

.photographer_section article .tagline {
  font-size: 16px;
  font-family: "DM Sans";
  color: black;
  font-weight: 400;
}

.photographer_section article .price {
  color: #757575;
  font-family: "DM Sans";
  font-size: 14px;
  font-weight: 400;
}

.photographer_section article p {
  margin: 3px 0 0 0;
}
