:root {
    --primary: white;
    --secondary: rgb(176, 53, 242);
    --primaryFont: black;
    --secondaryFont: rgb(54, 54, 54);

}

body {
    background-color: var(--primary);
    color: var(--primaryFont);
    max-width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

header>div {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 800;
}

header>div>img {
    width: 60px;
}

#logo {
    height: 45px;
    width: 50px;
    margin: 5px 0;
}

#nav>a {
    color: var(--primaryFont);
    text-decoration: none;
    padding: 10px;
    font-size: 1rem;
    margin: 3px;
}

#nav>a:hover {
    color: var(--secondary);
    font-weight: bold;
}
#navToggle {
    color: var(--primaryFont);
}
#mobileNav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: white;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}
#mobileNav>a {
    padding: 10px 0;
    color: var(--primaryFont);
    text-decoration: none;
}
#mobileNav>a:hover {
    color: var(--secondaryFont);
    font-weight: bold;
}
#contactModal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--primary);
    padding: 5% 0;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    overflow: scroll;
}
#contactModal>a {
    color: var(--primaryFont);
    text-decoration: none;
    padding: 10px;
    font-size: 1rem;
    margin: 3px;
}
#contactModal>a:hover {
    color: var(--secondary);
    font-weight: bold;
}
#closeContact {
    text-decoration: none;
    max-width: 110px;
    z-index: 1;
}
#hero {
    width: 100vw;
    max-width: 1200px;
}
#hero img {
    width: 100%;
}
#mainwrapper {
    max-width: 1200px;
    margin: 0 auto;
}
#about{
    margin: 0 auto;
    padding: 5%;
    text-align: center;
}
.socialLink {
    font-size: 2rem;
    text-decoration: none;
    color: var(--secondaryFont);
    padding: 5px;
}
.socialLink:hover {
    color: var(--secondary);
}
#actaccess {
    height: 50px;
    width: 50px;
    background: url(./Assets/actaccess.png) center no-repeat;
    filter: grayscale(1);
    background-size: contain;
    display: inline-block;
    vertical-align: top;
}
#actaccess:hover {
    filter: grayscale(0);
}
.video {
    width: 100%;
    height: 57.25vw;
}
.audioLink {
    color: var(--secondary);
    text-decoration: none;
}
.audioLink:hover {
    color: var(--secondaryFont);
}
#articles {
    text-align: center;
    padding: 50px 0;
}
.articleThumb {
    height: 180px;
    width: 300px;
}
#hearnow {
    height: 50px;
    width: 50px;
    background: url(./Assets/hearnow.png) center no-repeat;
    filter: grayscale(1);
    background-size: contain;
    display: inline-block;
    vertical-align: top;
}
#hearnow:hover {
    filter: grayscale(0);
}
#thanksTitle {
    font-size: 50px;
}
#thanksText {
    color: var(--secondary);
    font-size: 20px;
}   

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (min-width: 768px) {
    #logo {
        height: 70px;
        width: 80px;
        margin: 10px 0;
    }
    .socialLink {
        padding: 10px
    }
}
@media screen and (min-width: 1200px) {
    .video {
        height: 675px;
    }
}