* {
    box-sizing: border-box;
}

body {
	color: white;
    margin: 0;
    padding: 0;
    font-family: "Azeret Mono", monospace;
}

body.menuOpen {
    color: black;
}

/* Need to do it this way to prevent white space when scrolling on mobile */
#fixedBackground {
    /* background-image: url(img/red.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    /* height: 110vh;
    width: 110vw; */
    position: fixed;
    /* left: -5px; */

    top: 50%;
    left: 50%;
    min-width: 120%;
    /* min-height: 100%; */
    width: auto;
    height: auto;
    filter: blur(10px);
    transform: translate(-45%, -50%);
}

#container {
    /* height: 100vh; */
    /* z-index: 0; */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    transition: 0.5s;
}

#topNav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 20px;
    /* background: linear-gradient(180deg, rgba(0,0,0, 0.75) 0%, rgba(0,0,0,0) 100%); */
    position: relative;
    z-index: 10;

    /* background-color: red; */
}

#navLeft {
    /* background-image: url("img/logo.png");
    background-size: contain; */
    /* cursor: pointer; */
    width: 100px;
    line-height: 100px;
    display: flex;
    
    fill: black;

    /* background-color: aqua; */
}

#navMid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    /* background-color: aqua; */
}

#navMid a {
    text-decoration: none;
    color: inherit;
    padding: 5px;
    margin: 0px 15px;
}

#navRight {
    width: 100px;
    display: flex;
    justify-content: space-around;

    /* background-color: aqua; */
}

#navRight a {
    color: inherit;
    text-decoration: none;
    font-size: 30px;
}

#topNav a:hover{
    /* border-bottom: 3px solid white; */
}

#menuButton {
    display: none;
    transition: opacity 0.2s;
}

#menuLinks {
    display: none;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

footer a {
    text-decoration: none;
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    z-index: 10;
}

@media only screen and (max-width: 900px) {

    #topNav{
        justify-content: space-between;
        cursor: pointer;
    }

    #navLeft{
        margin-left: 35px;
    }

    #navMid, #navRight {
        display: none;
    }

    #topNav a{
        margin: 0;
        line-height: 50px;
        display: block;
        text-align: left;
        padding-left: 5%;
    }

    #menuButton {
        display: block;
        font-size: 30px;
        margin-right: 35px;
    }

    #menuLinks {
        flex-direction: column;
        align-items: center;
        background-color: white;
        opacity: 0;
        transition: opacity 0.5s;
        display: flex;
        height: 100vh;
        position: relative;
        padding-top: 100px;
        top: -100px;
        pointer-events: none; /* click through padding-top */
        
    }

    #menuLinks.show {
        opacity: 1;
        pointer-events: auto; /* normal pointer on hover etc */
    }

    #menuLinks a {
        font-size: 30px;
        margin: 15px;
        display: block;
        text-align: left;
        text-decoration: none;
        color: black;
    }

    .menuSocials {
        display: flex;
        padding-top: 30px;
    }

    #menuLinks .menuSocials a {
        font-size: 35px;
    }
}






