@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;
}

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

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

a:link {
    text-decoration: none;
}

.photographer_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    margin-top: 100px;
    justify-items: center;
}


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

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

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

.photographer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pVille {
    font-size: 16px;
    color: #901c1c;
    margin: 0;
}

.photographer_section .pTagline {
    font-size: 12px;
    margin: 0;
}

.photographer_section .pPrice {
    font-size: 10px;
    color: #757575;
    margin: 0;
}

