
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,200;0,400;0,600;0,700;1,200&family=Inconsolata:wght@200;600;700;800;900&family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,200;1,300;1,400;1,500&family=Russo+One&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}







@import url(//db.onlinewebfonts.com/c/0ac87e2140960beafff078e81f279eef?family=Monaco);


:root {
    --red: #a2214e;
    --blue: #27143a;
    --white: #ffff;
    --black: #0000;
}


html {
    height: 100%;
    width: 100%;
}


body {
    height: 100%;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}


#main {
    height: 100%;
    width: 100%;
    position: relative;
}


#header {
    width: 100%;
    height: 10%;
    padding: 8px 32px;
    background-color: var(--blue);
    border-bottom: 2px solid var(--white);
}


.header-container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}


.club-img {
    display: flex;
    align-items: center;
}

.club-img img {
    width: 45px;
    border-radius: 50%;
    margin: auto;
    border: solid 1px var(--red);
}


.club-img:hover img {
    transition: all .1s;
    border: solid 3px var(--red);
}

.nav-container {
    display: flex;
}


.nav-container ul {
    list-style-type: none;
    align-self: center;
    height: 100%;
}

.nav-container ul > li {
    display: inline-block;
    font-size: 18px;
    padding: 0 12px;
    position: relative;
    height: 60%;
    line-height: 2.5;
    border-radius: 8px;
}

.nav-container ul > li::after {
    width: 100%;
    content: "";
    background-color: #a2214e;
    height: 100%;
}


.nav-container li > a::after {
    display: none;
    content: "";
    position: absolute;
    width: 85%;
    bottom: -15px;
}


.nav-container li:hover {
    transition: all 0.3s;
    background-color: white;
    color: var(--blue);
}

.nav-container li:hover a {
    color: var(--blue);
}

.nav-container ul > li > a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    font-style: normal!important;
    font-weight: 400!important;
}

#content {
    width: 100%;
    background-color: var(--red);
}



#footer {
    height: 100px;
    width: 100%;
    background-color: var(--red);
    padding: 16px 32px;
    border-top: 2px solid var(--white);
} 


.logo-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
}


.logo-container img {
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
}

.school-logo {
    display: flex;
    justify-content: space-between;
}

.social-media {
    display: flex;
    justify-content: space-between;
}


.social-media a {
    display: flex;
    text-decoration: none;
}

.social-media i {
    display: inline-block;
    font-size: 20px;
    align-self: center;
    color: var(--white);
    margin: auto;
    padding-left: 8px;
}

.social-media i:hover {
    color: #27143a;
    transition: all 0.3s;
}


.footer-info {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.footer-info p {
    font-weight: 400;
    color: var(--white);
}













