/* 
    By _gabe.cc

    font-family: 'Bebas Neue', cursive;
    font-family: 'Dosis', sans-serif;
    font-family: 'Teko', sans-serif;
*/

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

html {
    font-size: 62.5%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue';
}

h1{
    font-size: 6rem;    
}

h2{
    font-size: 5rem;
}

h3{
    font-size: 4rem;
}

h4{
    font-size: 3.5rem;
}

h5{
    font-size: 3rem;
}

h6{
    font-size: 2.5rem;
}

.bg-site{
    background-position: center center;
    background-size: cover;
}

.page{
    min-height: 100vh;
}

.content{
    max-width: 120rem;
    margin: 0 auto;
    padding: 5rem 10rem;
}

.map-container{
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    left: 0.5rem;
    bottom: 2.5rem;
    right: 0.5rem;
}


.ghbtns {
    position: relative;
    top: 4px;
    margin-left: 5px;
}

a {
    color: #0077ff;
}

.leaflet-heatmap-layer {
    opacity: 0.95;
}

.upward{
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    opacity: 50%;
    transition: all 300ms ease-in-out;
}

#up-button{
    display: none;
}

.upward:hover{
    opacity: 90%;
}

