
h2 {
    font-weight: 600;
    text-align: center;
    font-size: 2.2rem;
    margin-top: 2rem;
    color: #444;
}

form.search {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
}

form.search input {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 2px solid #888;
    font-size: 1rem;
    padding: 0.5rem 1rem;
}
form.search input:focus {
    border-color: #00065f;
}

form.search button {
    cursor: pointer;
    display: block;
    border: none;
    background-color: #00065f;
    padding: 1rem 0;
    width: 140px;
    color: #fff;
    margin-right: 0.5rem;
}

form.search button:hover {
    background-color: #010ca5;
}

@media screen and (max-width: 500px) {
    form.search {
        display: block;
    }
    form.search button {
        margin-right: 0;
        margin-top: 0.5rem;
    }
}


.people-section {
    margin: 1rem 0 2rem;
}

.people-section .items {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    margin: 0 auto 0.75rem;
}

.people-section .box {
    width: 20%;
    margin: 0;
    padding: 0.5rem;
    text-decoration: none;
    display: block;
    transition: 0.2s;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .people-section .box {
        width: 30%;
    }
}

@media screen and (max-width: 800px) {
    .people-section .box {
        width: 50%;
    }
}

@media screen and (max-width: 400px) {
    .people-section .box {
        width: 90%;
    }
}

.people-section .box:hover {
    transform: scale(1.025);
}

.people-section .box img {
    display: block;
    margin: 0 auto;
    width: 180px;
    height: 240px;
    margin-bottom: 0.75rem;
    object-fit: cover;
}

.people-section .box h5 {
    color: #455a64;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.people-section .box h6 {
    color: #658290;
    font-weight: 500;
    text-align: center;
    font-size: 0.85rem;
}