.mobile {
    display: inline;
}

.desktop {
    display: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

p {
    color: white;
}

#imgLink {
    text-align: center;
    width: auto;
    margin: 0 auto;
}

html {
    height: 100%;
    display: block;
}

body {
    background-color: #1a1814;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family:monospace;
    font-size: 16px;
}

#mobileNav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    background-color: #80cefe;
    color: white;
    align-items: center;
    position: fixed;
    height: 40px;
}

.navMenu {
    position: fixed;
    top: 40px;
    height: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: hidden;
    background: #1c1c11;
    color: white;
    transition: height 400ms ease-in;
    z-index: 2600;
}

.navMenu a {
    font-family: monospace, 'Times New Roman', Times, serif;
    display: block;
    width: 210px;
    text-align: center;
    text-decoration: none;
    color: #288694;
    margin: 8px;
    padding: 10px;
    border-radius: 2em;
    border-color: blue;
    background-color: transparent;
    box-shadow: 0px 0px 10px white, inset 0px 0px 8px black;
    cursor: pointer;
    transition: 0.5s;
}

.navMenu a:hover {
    color: white;
}

.isVisible {
    height: 280px;
}

.navMenu > * {
    padding: 20px 0;
}

#navBtn {
    cursor: pointer;
}

#closeBtn {
    margin-left: 90%;
    padding: 0;
}

main {
    background-color: #1a1814;
    padding-top: 40px;
}

footer {
    padding-top: 10px;
    text-align: center;
    width: 100%;
    background-color: #1a1814;
    color: white;
 }

footer a, main a {
    padding-left: 3px;
    padding-right: 3px;
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

.fa-youtube {
    color: red;
}

.fa-twitter {
    color: #1DA1F2;
}

.fa-discord {
    color: #5865F2;
}

.fa-twitch {
    color:  #6441a5;
}

#pageHeader {
    text-align: center;
    color: #30445d;
}

.textWrapper {
    width: 95%;
    max-width: 660px;
    margin: 0 auto;
}

@media screen and (min-width: 520px) {
    #table-content {
        display: flex;
    }
}

/* Desktop view */
@media screen and (min-width: 1000px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: inline;
    }

    html {
        display: block;
    }

    body {
        font-size: 18px;
    }

    main {
        padding-top: 0;
    }

    header {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-content: center;
        height: 27vh;
        width: 100%;
        /* background-color: #94f6fe; */
        background-image: linear-gradient(to right, #8eebfe, #71acfd)
    }
    header img {
        height: 150px;
        width: auto;
    }
    header #navLinks {
        display: flex;
        width: 1000px;
        justify-content: space-between;
        margin: 0 auto;
    }

    header #navLinks a {
        font-family: monospace, 'Times New Roman', Times, serif;
        display: block;
        width: 210px;
        text-align: center;
        text-decoration: none;
        color: #000000;
        margin: 8px;
        padding: 10px;
        border-radius: 2em;
        background-color: transparent;
        box-shadow: 0px 0px 10px white, inset 0px 0px 8px black;
        cursor: pointer;
        transition: 0.5s;
    }
    header #navLinks a:hover {
        background-color: #30445d;
        color: white;
    }

    footer a, main a {
        padding-left: 3px;
        padding-right: 3px;
        color: white;
    }
    
    footer a:hover {
        text-decoration: underline;
    }
}