* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1440px;
    margin-left: 20px;
    margin-right: 20px;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

form {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

form label {
    color: #312E2E;
    font-size: 30px;
}

form div {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: self-start;
    margin-bottom: 20px;
}

form textarea,
form input {
    width: 100%;
    height: 68px;
    border: none;
    border-radius: 5px;
    padding: 20px;
    font-size: 20px;
}

form textarea {
    height: auto;
}

form textarea + .invalid_feedback,
form input + .invalid_feedback {
    display: none;
    color: white;
    background-color: red;
    font-weight: bold;
    padding: 0 5px;
}

form textarea.is_invalid ,
form input.is_invalid {
    border: 2px solid red;
    border-bottom-left-radius: 0;
}

form textarea.is_invalid + .invalid_feedback,
form input.is_invalid + .invalid_feedback {
    display: inline;
}

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

.home .logo {
    margin-left: 0;
}

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

.photographer_section .photographer {
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.photographer_section .photographer h2 {
    color: #D3573C;
    font-size: 36px;
}

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

.photographer_section .photographer_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

.photographer_section .photographer_info address {
    font-style: normal;
}

.photographer_section .photographer_info small {
    color: #757575;
}

.photographer_section a {
    text-decoration: none;
    color: inherit;
}
