@import url("photographer.css");

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

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

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

h1 {
  color: #901c1c;
}

.logo {
  height: 50px;
}

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

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

.photographer_section article a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.photographer_section article img,
.photograph-header img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 1px 1px 10px #d5d5d5c7;
}

.photographer_section article h2 {
  color: #d3573c;
  font-size: 36px;
  margin-bottom: 0;
}

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

.photographer-location {
  font-size: 13px;
  color: #901c1c;
}

.photograher-tagline {
  font-size: 10px;
  color: #000000;
}

.photographer-price {
  font-size: 9px;
  color: #757575;
}
