:root{
    --green : #b1cb06;
    --blue : #009de1;
    --yellow : #efb416;
}

body, html{
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
}

body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Ubuntu';
}

/*
 *
 * Logo
 *
*/

#logo{
    position : absolute;
    top : 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width : 200px;
    z-index: 100;
}

#logo img{
    max-width : 100%;
}

@media screen and (max-width : 992px){
    #logo{
        top : 1.5rem;
        max-width : 150px;
    }
}

@media screen and (max-width : 575px){
    #logo{
        top : 1.5rem;
        max-width : 120px;
    }
}

/*
 *
 * TIMER
 *
*/

#timer, #timer #seconds{ 
    color : #ffffff; 
}

@media screen and (max-width : 575px){
    #main-model #logo{
        top : 1.5rem;
        max-width : 120px;
    }

    #weather-forecast #weather-icon{
        display: none;
    }

    #timer #seconds{
        display: none;
    }
}

/*
 *
 * MENU
 *
*/

#menu{
    position: absolute;
    bottom : 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: .3rem .3rem;
    border-radius: 500px;
    z-index: 5;
}

#menu ul{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu ul li{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 1rem;
    width : 2rem;
    height: 2rem;
    border-radius: 500px;
    background-color: #fff;
}

#menu ul li a{
    color : #222222;
}

#menu ul li.active{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3); 
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
}

#menu ul li.active i{
    color : var(--green);
    filter: drop-shadow(0 0 5px rgba(177,203,6,0.4)) drop-shadow(0 0 7px rgba(177,203,6,0.4))
    drop-shadow(0 0 10px rgba(177,203,6,0.4));
}

#menu ul li:hover i, #menu ul li:active i{
    color : var(--green);
}

/*
 *
 * SCENE CONTAINER
 *
*/

#scene-container{
    position: relative;
    height: 100%;
}

/*
 *
 * PIN LABEL
 *
*/

.pin-label{
    transform: translateY(100rem);
}