/* Global */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "gothicBold", "gothicMedium", Helvetica, sans-serif;
    font-weight: 100;
    color: #003882;
}

@font-face {
    font-family: gothicBold;
    src: url(gothic_font/GOTHAM-BLACK.TTF);
}

@font-face {
    font-family: gothicMedium;
    src: url(gothic_font/GOTHAM-MEDIUM.TTF);
}

a {
    text-decoration: none;
    font-family: "gothicMedium";
    color: white;
}

a:hover {
    color: #003882;
}

ul {
    list-style: none;
}

/* NavBar*/

nav .container{
    background: #ff6900;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 120px;
    border-bottom: 5px solid white;
}


.header {
    margin-top: 15px;
    text-align: center;
}

.nav-1 {
    display: flex;
    padding-top: 20px;
}

.nav-1 li {
    padding-left: 25px;
}

/* Showcase */

section .container {
    border-bottom: 5px solid white;
}

.brotherhood .container {
    display: flex;
    justify-content: flex-start;

}

.rush .container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.philanthropy .container {
    display: flex;
    justify-content: flex-start;
}

.merch .container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: #003882;
}

#first {
    border-top: 0px solid white;
}

.text a {
    font-family: gothicBold;
    color:#ff6900;
}

.text h1, p {
    color: white;
}

.text h1 {
    padding-bottom: 20px;
}

.odd {
    background: #ff6900;
}

.odd a{
    color: #003882;
}

img {
    max-width: 50%;
}

@media (max-width: 640px) {
    .nav-1 {
        display: none;
    }

    .header {
        margin-top: 25px;
    }
}