html {
    scroll-behavior: smooth;
    font-family: "Plus Jakarta Sans Regular";
}

body{
    margin: 0;
    background-color: black;
}

:root {
    --left-percentage: 4%
}

#home-container {
    position: relative;
    display: block;   
    text-align: center;
}

#main-image {
    display: block;
    width: 100%;
}

#main-title {
    position: absolute;
    top: 4.5vh; /* navbar height: 3.6rem */
    left: var(--left-percentage);
    font-size: 11.5vw;
    font-family: "Plus Jakarta Sans Regular", sans-serif;
    color: white;
    margin: 0;
}

/*#home-container h3 {*/
/*    position: absolute;*/
/*    left: 10%;*/
/*    top: 30%;*/
/*    font-size: 2.5rem;*/
/*    font-family: "Plus Jakarta Sans Regular", sans-serif;*/
/*    color: white;*/
/*}*/

#description {
    text-align: center;
}

/*#description h3 {*/
/*    text-align: center;*/
/*    font-family: "Plus Jakarta Sans Regular";*/
/*    font-size: 2rem;*/
/*    margin: 1.5rem 0rem;*/
/*    color: grey;*/
/*}*/

#description h2 {
    margin-top: -1vw;
    text-align: center;
    font-family: "Plus Jakarta Sans Regular";
    font-size: 3rem;
}
    
#description p{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background-color: #ececec;
    margin: 10px;
    padding: 2vw;
    border-radius: 2vw;
    text-align: center;
    font-size: 1vw;
}

footer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    background-color: black;
}

footer a {
    /*color: cornflowerblue;*/
    color: white;
    font-size: 1rem;
    text-decoration: none;
}

footer a:hover {
    /*color: black;*/
    color: cornflowerblue;
}

.gm-dark-panel-5 {
    color: white;
    background-color: rgba(15, 15, 15, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.gm-panel {
    position: absolute;
    top: 35%;
    /*right: 5%;*/
    left: var(--left-percentage);
    /*height: 65px;*/
    /*width: 305px;*/
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
    border-style: solid;
    border-width: 1px;
    padding: 35px;
    margin: 0px;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

#stats {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0px;
}

h3 {
    margin: 0 0 9px;
}

p {
    margin: 0;
    font-size: 15px;
}


@media screen and (min-width: 769px) and (max-width: 1024px){ /* tablet */
    
    footer {
        /* background-color: yellow; */
    }

    #main-title {
        font-size: 6rem;
    }
}

@media screen and (max-width: 768px){ /* mobil */
    footer {
        /* background-color: orange; */
    }

    #home-container {
        height: 100vh;
    }

    #main-image {
        height: 100%;
        object-fit: cover;
        object-position: 55% center;
    }

    #main-title {
        left: 8%;
         font-size: 64px;
    }

    #description h3 {
        font-size: 1.5rem;
    }
    #description h2 {
        font-size: 2.2rem;
    }

    .gm-panel {
        width: 190px;
        box-sizing: border-box;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        top: 45%;
    }

    #temperature {
        font-size: 24px;
    }

    #stats {
        align-items: baseline;
    }
}

/* dropdown menu */


