/* 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;
}

/* Memberships */
.memberships {
    border-radius: 10px;
    display: block;
    margin: 5.5rem auto;
    max-width: 75rem;
}

.memberships .star {
    display: flex;
    justify-content: center;
    width: 75rem;
}

.memberships .star img{
    display: block;
    height: 1rem;
    width: 1rem;
}

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

.memberships p {
    line-height: 1.5;
    margin-top: 0;
}

.memberships .container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 75rem;
}

.memberships .offer {
    display: flex;
    width: 100%;
    margin-left: 3rem;
}

.memberships img {
    float: left;
    max-height: 7.5rem;
    max-width: 7.5rem;
    border-radius: 20%;
}

.memberships .info {
    display: block;
    margin-left: 2rem;
}

@media only screen and (max-width: 600px) {
    .memberships img {
        display: none;
    }

    .memberships .offer {
        margin: 0 1rem;
    }

    .memberships .info {
        margin-left: 0;
    }
}

/* 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;
}