/*
Colors used:

#FF2E88 - Pink
#2A2A2A - Background Grey
#61CE3C - Pale Green

*/

/* Mobile Layout */

html
{
    height:100%;
}

body{
    font-family: monospace;
    background: url("../img/bg.png");
    color:#61CE3C;
    background-color: #2A2A2A;
    margin: 0;
}

a{
    color:#FF2E88;
    cursor: pointer;
    text-decoration: none;
}

a:hover{
    color:#61CE3C;
}


h1{
    text-align: center;
    font-weight: bold;
}

h2,h3{
    text-align: center;
}


aside{
    display:none;
}

aside h1{
    text-align: center;
}

section{
    border: 1px solid #61CE3C;
    padding:1em;
}

main{
    border: 1px solid #61CE3C;
    margin-top: 1em;
    padding:0.5em;
    margin-bottom: 1em;
    background-color: #2A2A2A;
}

/* NAVBAR AND MENU */
/*
#menu-button{
    display:block;
    padding: 1em;

}
#menu{
    display:block;
}
*/

#navbar-title{
    display:none;
}

#navbar
{
    text-align: center;
    font-size: large;
}



#navbar ul
{
    line-height: 1.5em;
    border: 0.5px dashed #FF2E88;
    background-color:#2A2A2A;
    padding: .5em;

}

#navbar li
{
    list-style-type: none;
    width: 100%;

}

#navbar li:hover
{
    background-color: #FF2E88;
    transition: background-color 0.5s linear;
    color: #2A2A2A;

}

#navbar li:hover a{
    color: #2A2A2A;
}

#navbar li:active{
    color:#2A2A2A;
}

#sticky_arrow{
    display:inline;
    position:fixed;
    bottom:40px;
    right:0;
    width:70px;
    height:70px:
    z-index: 100;
    color:#FF2E88
}
#sticky_arrow i{
    font-size: 60px;
}

.cover{
    height:300px;
    width:200px;
}

.large_sticky{
    position: fixed;
}

.sticky
{
    position: fixed;
    top:0;
    width:100%;
    margin:0;
    border-bottom: 0.5px dashed #FF2E88;
    background-color: #2A2A2A;
}

.sticky ul{
    margin: 0;
}

.centered{
    text-align:center;
}

.post:after {
    content: "";
    display: table;
    clear: both;
}


.post{
    border: 1px solid #61CE3C;
    margin:1em;
    padding:0.5em;
    line-height: 1.5em;
}

footer:after {
    content: "";
    display: table;
    clear: both;
}

footer{
    clear:both;
    display:block;
    position:fixed;
    bottom: 0;
    width:100%;
    height:20px;
    background: rgba(0,0,0, 0.8);
    padding-left: 5px;
}

video#bgvid{
    display:none;
}

/* Tablet Layout */
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {

    main{
        margin: 1em;
        width:90%;
    }
    #navbar li{
        display:inline;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    /*
    #menu-button{
        display:none;
    }

    #menu{
        display:block;
    }*/


    /* Background Video */
    video#bgvid{
        display: block;
        position: fixed;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -100;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        background-size: cover;
    }

}


/* Desktop Layout */
@media only screen and (min-width: 992px)
{
    main, nav{
        margin: 10px;
        margin-top: 5%;
        margin-bottom: 50px;
    }

    main{
        float:left;
        margin-left: 50px;
        width:60%;
    }
    /*
    #menu{
        display:block;
    }*/

    nav{
        float:left;
        width:19%;
    }
    .image{
        display:inline;
        float:right;
        max-width: 40%;
    }

    .description{
        display:inline;
        float:left;
        max-width: 60%;
    }


    #navbar-title{
        /*display:block;*/
    }

    #navbar li{
        display:block;
        padding: 0;
    }


    #sticky_arrow{
        display:none;
    }
}
