
@font-face{
    font-family: PSL;
    src: url(/static/CSS/PublicSans-Light.otf);
}


@font-face{
    font-family: PublicSans;
    src: url(/static/CSS/PublicSans-Black.otf);
}

a{
    color: black;
    text-decoration: none;
}

h2 > a{
    text-decoration: none;
}

body, html{
    height: 100%;
    width: 100%;
}

::selection{
    background: #2A83FE;
    color: white;
}

/*@media only screen and (max-width: 400px) and (orientation: portrait){*/
html{
    background: #F5F6FA;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -webkit-overflow-scrolling: auto;
}

body{
    padding: 0;
    margin: 0;
}

#banner{
    position: fixed;
    z-index: 5;
    height: 60px;
    width: 100vw;
    top: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04), 0 6px 20px 0 rgba(0, 0, 0, 0.03);
}

#banner > h1{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #2A83FE;
    width: 100%;
    font-size: 30px;
    text-align: center;
    margin: 0;
    font-family: PublicSans;
    letter-spacing: 2px;
    font-weight: 100;
    border: none;
}

#menu{
    z-index: 10;
    width: 100vw;
    height: 110vh;
    box-sizing: border-box;
    overflow: hidden;
    position: fixed;
    top: 0;
    /* left: -100vw; */
    left: 0;
    transform: translateX(-100vw);
    background-image: linear-gradient(225deg, #BDEBFC,#3AC3D2);
    padding-top: 100px;
    -webkit-transition: all 0.5s cubic-bezier(.61, .1, .39, .89);
    -moz-transition: all 0.5s cubic-bezier(.61, .1, .39, .89);
    -ms-transition: all 0.5s cubic-bezier(.61, .1, .39, .89);
    -o-transition: all 0.5s cubic-bezier(.61, .1, .39, .89);
    transition: all 0.5s cubic-bezier(.61, .1, .39, .89)
}

#menu > h2{
    font-size: 30px;
    font-family: PSL;
    text-align: center;
    width: 100vw;
    height: 60px;
    padding: 20px;
    border: none;
}

#menu > h2 > a{
    width: 100vw;
    height: 60px;
    color: black;
    padding: 1em;
}

#open-menu{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 25px;
    width: 60px;
    color: #2A83FE;
    text-align: center;
}

#close-menu{
    text-align: center;
    z-index: 10;
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 35px;
    width: 60px;
    color: #2A83FE;

}

a#login, a#logout{
    z-index: 10;
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 35px;
    width: 60px;
    color: #2A83FE;
}



#main{
    height: calc(100vh - 80px);
    padding-top: 60px;
}

#main > h1{
    padding: 1em 0 0.2em 0.5em;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

#menu.open{
    transform: translateX(0);
}
.no-scroll{
    overflow: hidden;
}
/*}*/


#flash_messages{
    margin-top: 100px;
}

.clicky {
    /** Offset the Position **/
    top: 0;
    position: relative;
    margin-top: 0;
    margin-bottom: 10px;
  
    /** 3D Block Effect **/
    box-shadow: 0 10px 0 0 lightblue;
  
    /** Make it look pretty **/
    display: block;
    background: #2A83FE;
    color: #eee;
    padding: 1em 2em;
    border: 0;
    cursor: pointer;
    font-size: 1.2em;
    opacity: 0.9;
    border-radius: 10px;
  }
  
  .clicky:active {
    /** Remove 3D Block Effect on Click **/
    box-shadow: none;
    top: 10px;
    margin-bottom: 0;
  }
  
  .clicky:hover {
    opacity: 1;
  }
  
  .clicky:active,
  .clicky:focus {
    /** Remove Chrome's Ugly Yellow Outline **/
    outline: 0;
    border: 0;
  }

@media only screen and (min-width: 1000px){
    #main{
        width: 80vw;
        max-width: 1400px;
        margin: 0 auto;
    }
}

