:root {
    --primary: white  ;
    --secondary: #000114;
    --tertiary: #ff7cc3;
    --hover1: #fdd3ea;

}

body {
    /* background-color: var(--primary); */
    background: radial-gradient(rgba(0,1,20, .3), rgba(0,1,20, .3), rgba(0,1,20)), url(Assets/midnightBrickBG.png) no-repeat;
    background-size: cover;
    color: var(--secondary);
}

header {
    background-color: var(--secondary);
    position: relative;
    z-index: 1;
    padding: 5px 15px;
}

header>div {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 800;
}

header>div>img {
    width: 60px;
}

#logo {
    height: 45px;
    width: 160px;
}

#nav>a {
    color: var(--tertiary);
    text-decoration: none;
    padding: 10px;
    font-size: 1rem;
    margin: 3px;
}

#nav>a:hover {
    font-weight: bold;
    color: var(--hover1);
    text-shadow: 1px 1px 2px var(--tertiary), -1px -1px 2px var(--tertiary),  -1px 1px 2px var(--tertiary),  1px -1px 2px var(--tertiary);
}
#navToggle {
    color: var(--tertiary);
}
#mobileNav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: var(--secondary);
    width: 100vw;
    height: 100vh;
    z-index: 1;
}
#mobileNav>a {
    padding: 10px 0;
    color: var(--tertiary);
    text-decoration: none;
}
#mobileNav>a:hover {
    font-weight: bold;
    color: var(--hover1);
    text-shadow: 1px 1px 2px var(--tertiary), -1px -1px 2px var(--tertiary),  -1px 1px 2px var(--tertiary),  1px -1px 2px var(--tertiary);
}
#contactModal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--secondary);
    padding: 5% 0;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    overflow: scroll;
}
#contactModal>a {
    color: var(--tertiary);
    text-decoration: none;
    padding: 10px;
    font-size: 1rem;
    margin: 3px;
}
#contactModal>a:hover {
    font-weight: bold;
}
#closeContact {
    text-decoration: none;
    max-width: 110px;
    z-index: 1;
}
/* #hero {
    background: radial-gradient(rgba(0,1,20, .3), rgba(0,1,20, .3), rgba(0,1,20)), url(Assets/midnightBrickBG.png);
} */

#heroImg {
    width: 100vw;
    margin-bottom: 50px;
    animation: 3s flickerOn;
}

.centered {
    max-width: 1400px;
    margin: 0 auto;
}
#slogan {
    background: rgba(0,0,0,.25);
    color: white;
}
#sloganText, .rosterTitle, #contact>h3 {
    font-size: 35px;
    color: #f10082;
    font-weight: 100;
}

#sloganSubText {
    font-size: 20px;
    font-weight: 100;
    max-width: 800px;
    margin-top: 30px;
}

#services {
    margin-top: 50px;
}

.serviceBox {
    padding: 100px 50px;
}
.serviceBox:nth-child(1), .serviceBox:nth-child(3) {
    background-color: #000345;
    color: white;
}
.serviceBox:nth-child(1):hover, .serviceBox:nth-child(3):hover {
    background-color: rgb(0, 3, 69, .8);
    color: white;
}
.serviceBox:nth-child(2) {
    background-color: rgba(0, 4, 95);
    color: white;
}
.serviceBox:nth-child(2):hover {
    background-color: rgb(0, 4, 95, .8);
    color: white;
}

.serviceTitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
}

.serviceDetail {
    padding: 10px;
}

#about {
    margin: 50px auto 0;
    max-width: 1200px;
}
#aboutText {
    font-size: 20px;
}
#roster {
    margin-top: 50px;
}
.member {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    margin: 10px;
}
.memberName {
    background-color: var(--tertiary);
    text-align: center;
    padding: 10px;
    position: relative;
    top: 75%;
    font-size: 25px;
}
.memberModal {
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    background-color: var(--secondary);
    z-index: 1;
    display: none;
    color: white;
}
.closeIcon {
    text-decoration: none;
    max-width: 110px;
    z-index: 1;
    color: white;
}
#description {
    border: 1px solid #ced4da;
    height: 150px;
    width: 100%;
}
footer {
    background-color: #000345;
    color: white;
    margin-top: 100px;
}

.socialLink {
    color: var(--tertiary);
    padding: 10px;
}
.socialLink:hover {
    color: var(--hover1);
    text-shadow: 1px 1px 2px var(--tertiary), -1px -1px 2px var(--tertiary),  -1px 1px 2px var(--tertiary),  1px -1px 2px var(--tertiary);
}
#contact {
    margin-top: 100px;
    padding: 103px 10%;
    color: white;
    background: rgba(0,0,0,.25);
}
#contact h3 {
    color: #f10082;
}
#contact form {
    width: 100%;
    max-width: 1200px;
}
#contact input, #contact textarea {
    background-color: rgba(255,255,255,.25);
    color: white;
}
#contact form>button {
    background-color: #000345;
}
#contact form>button:hover {
    background-color: #f10082;
}
.paragraph>h2 {
    color: #f10082;
    font-weight: 300;
}
.paragraph>p {
    font-size: 30px;
}
@keyframes flickerOn {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    22% {
        opacity: 0;
    }
    24% {
        opacity: 1;
    }
    26% {
        opacity: 0;
    }
    28% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (min-width: 768px) {
    #heroImg {
        width: 600px;
    }
    #sloganText, .rosterTitle {
        font-size: 60px;
        font-weight: 100;
    }
    
    #sloganSubText {
        font-size: 30px;
        font-weight: 100;
        max-width: 1200px;
    }
}