* {
    box-sizing: border-box;
}

body {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.header {
    background-color: #1f2937;
    display: flex;
    flex-direction: column;
    padding: 1em 2em;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.header-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 2rem;
    gap: 2rem;
}

p {
    font-family: "Roboto";
    color: #f9faf8;
    font-size: 18px;
    margin: 10px 0;
}

.main-text {
    font-family: "Roboto";
    color: #f9faf8;
    font-size: 3rem;
}

.header-body-text {
    text-align: left;
    /* flex-shrink: 0; */
    width: 50%;
}

.header-body-text button, .contact-box button {
    background-color: #3882f6;
    padding: 8px 24px;
    font-family: "Roboto";
    font-size: 18px;
    color: #f9faf8;
    border-radius: 10px;
    border: none;
}

.header-body-img {
    padding: 20px 0;
    width: 50%;
}

.header-body-img img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit:cover;
}

#projects-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 100px;
}

.info-title {
    font-family: "Roboto";
    font-size: 36px;
    font-weight: "extra-bold";
    color: #1f2937;
    text-align: center;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
}

.info-box {
    width: 200px;
    height: 200px;
    text-align: center;
}

.info-box p {
    color: black;
}

.info-img {
    border: 4px solid #3882f6;
    width: 200px;
    height: 200px;
    border-radius: 1rem;
    text-align: center;
}

.info-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

#reviews-section {
    background-color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 3em 4em;

}

.quote-text {
    font-family: "Roboto";
    font-size: 36px;
    font-style: italic;
    font-weight: 100;
    color: #1f2937;
}

.quote-author {
    align-self: flex-end;
    padding-right: 60px;
    font-family: "Roboto";
    font-size: 30px;
    color: black;
}

#contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em 4em;
}

.contact-box {
    background-color: #3882f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    border-radius: 10px;
    padding: 1em;
}

.contact-text {
    width: 70%;
}

.contact-text p {
    margin: 0;
}

#contact-text-action {
    font-family: "Roboto";
    font-size: 26px;
}

.contact-box button {
    all: unset;
    border: #e5e7eb solid 2px;
    /* width: 30%; */
    border-radius: 1em;
    cursor: pointer;
    text-align: center;
    padding: 0.5rem 1rem;
}

.footer {
    background-color: #1f2937;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 64px;
}


@media (max-width: 425px) {
    #contact-section {
        padding: 2em 1em;
    }

    .contact-box {
        width: 90%;
    }
}