body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px 20px;
    background-color: #1F2937;
    color: #f9faf8;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: auto;
}

ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
    align-items: center;
}

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

.hero {
    color: #f9faf8;
    padding: 20px 20px;
    background-color: #1F2937;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.photo {
    width: 500px;
}

.hero-left {
    margin: 0;
    padding: 0;
    width: 500px;
}

.main {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 0;
    padding-bottom: 0;
}

#second {
    font-size: 12px;
    color: #E5E7EB;
}

.hero-left button {
    background-color: #3882F6;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    color: #f9faf8;
}

.infos {
    flex-grow: 1;
    padding: 20px 20px;
    text-align: center;
}

.infos h2 {
    font-size: 30px;
    font-weight: 900;
    color: #1F2937;
}

.blocs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.img-bloc {
    width: 200px;
    height: 200px;
    border: 4px solid #3882F6;
    border-radius: 10px;
}

.quotes {
    background-color: #E5E7EB;
    flex-grow: 1;
    padding: 30px 200px;
    display: flex;
    flex-direction: column;
}

.quotes p {
    font-size: 30px;
    font-style: italic;
    color: #1F2937;
}

.quotes h5 {
    align-self: flex-end;
    margin-top: 0;
}

.cta-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta {
    background-color: #3882F6;
    margin: 40px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    flex-grow: 1;
    flex-wrap: wrap;
}

.text {
    color: #f9faf8;
}

.edit {
    margin: 5px;
}

.cta button {
    background-color: #3882F6;
    border: 2px solid #f9faf8;
    border-radius: 10px;
    padding: 8px 16px;
    flex-shrink: 0;
    color: #f9faf8;;
}

footer {
    background-color: #1F2937;
    color: #f9faf8;
    text-align: center;
}