/* Global Properties */
html {
    font-size: 16px;
    box-sizing: border-box;
    background-color: black;
    color: white;
    font-family: 'MerriweatherSans', Arial, Helvetica, sans-serif;
}

#mf {
    font-family: 'Highlander';
    text-transform: uppercase;
    color: crimson;
}

#center {
    text-align: center;
}

.divider {
    margin: 1rem auto;
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
}

/* Header Section */
header {
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

header .container{
    display: flex;
    align-items: center;
    height: 5rem;
    padding: 0 2rem;
    background-color: black;
}

header .logo{
    color: crimson;
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    flex: 1;
}

header nav {
    color: white;
    display: block;
}

header nav ul {
    display: flex;
    padding-left: 1.5rem;
    list-style-type: none;
}

header nav li {
    padding-left: 5rem;
}

header a {
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}

header nav a:link {
    color: white;
}

header nav a:visited {
    color: white;
}

header nav a:hover {
    cursor: pointer;
    color: rgb(232, 39, 97);
}

header nav a:active {
    font-size: 0.95rem;
    color: rgb(232, 39, 97);
    text-shadow: 1px 1px 3px white;
}

header .mobile {
    display: none;
}

/* Staff Section */

.staff {
    width: 85%;
    display: block;
    margin: 5.5rem auto;
}

.staff img {
    max-width: 6rem;
    max-height: 6rem;
    border-radius: 50%;
}

.staff p {
    line-height: 1.5;
}

.staff h2 {
    margin: 0;
    font-family: 'MerriweatherSans-Bold', Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.staff h3 {
    margin: 0;
    font-family: 'MerriweatherSans-BoldItalic', Arial, Helvetica, sans-serif;
    font-style: italic;
}

.staff h4 {
    margin-top: 0.5rem;
}

.staff .container {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    max-height: fit-content;
}

.staff .box {
    max-width: 15rem;
    padding: 1rem 1rem 0rem 1rem;
    margin: 1rem;
    border-radius: 1rem;
    background-color: hsl(28, 40%, 40%);
}

.staff .star {
    display: flex;
    justify-content: center;
}

.staff .star img {
    margin: 0 1rem;
    max-height: 1rem;
    max-width: 1rem;
}

@media only screen and (max-width: 664px) {
    .staff .box {
        max-width: 10rem;
    }
}


/* Footer Section */
footer {
    margin-top: 10rem;
    background-color: rgb(40, 40, 40);
    padding-top: 1.2rem;
}

footer #mf {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

footer h4 {
    margin: 0;
}

#phone {
    margin-top: 0.3rem;
}

footer p {
    font-size: 0.7rem;
    margin-top: 1.2rem;
    margin-left: 0.5rem;
}