* {
    padding: 0;
    margin: 0;
    font-family: "Times New Roman";
    box-sizing: border-box;
}

body {
    background-color: #fdfce8;
}

#main {
    text-align: center;
}

h1 {
    font-size: 45px;
}

h2 {
    background-color: #734128;
    color: white;
    text-align: center;
    font-size: 40px;
}

p {
    font-size: 30px;
    line-height: 55px;
}

h3 {
    background-color: #c7a07a;
    text-align: center;
    font-size: 30px;
}
#staff {
    background-color: #e2ceb1;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
}

.staff-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 15px;
}

.staff-row img {
    max-width: 48%;
    height: auto;
    border: 2px solid black;
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .staff-row img {
        max-width: 100%;
    }
}
/* Responsive Design */
@media (max-width: 768px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 18px;
        line-height: 30px;
    }

    #staff img {
        width: 100%;
        height: auto;
    }
}
/* Responsive Location Map */
#location-map iframe {
    width: 90%;
    max-width: 1200px;
    height: 400px;
    border: 4px solid black;
}
