@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

#map { 
    
    height: 100vh; 
    width: 100vw;
    position:relative;
    z-index: 1;
}

body{
    background-color: #232227;
    font-family: 'Roboto', sans-serif;
}

body, html{
    height:100%;
    margin:0;
}

#dashboard {
    position: absolute;
    right: 0;
    bottom: 16px;
    background-color: rgba(5, 0, 0, 0.3);
    z-index: 99;
    padding: 0 15px 15px 15px ;
}
#dashboard h4{
    text-align: right;
    color: rgb(255, 255, 255);
    font-kerning: none;
    font-weight: 100;
    font-size: 20px;
    margin: 15px 0 5px 0;
}
.dash_numbers{
    font-family: 'Share Tech Mono', monospace;
    font-size: 50px;
    display:block;
    padding: 1px 10px 0 10px;
    border: solid 1px rgb(100, 100, 100);
    margin:0;
    color: red;
    text-align: right;
}

.units{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: white;
}
.link{
    display:block;
    text-decoration: none;
}
#loader{ 
    height: 100px; 
    width: 100%;
    position:absolute;
    z-index: 0;
    left: 0;
    top: 200px;
    text-align: center;
    font-size: 40px;
    color: red;
    font-family: 'Share Tech Mono', monospace;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #dashboard h4{
        font-size: 14px;
    }
    .dash_numbers{
        font-size: 20px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}
 
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}
 
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}
 
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

} 