@import url("https://fonts.cdnfonts.com/css/montserrat");

* {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

html, body, #map {
    background: #0a0a0a;
    font-family: "Montserrat", sans-serif;
}

#info-card-container {
    z-index: 99;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.info-card{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1rem;
    background: rgba(25, 63, 50, 0.8);
    width: 300px;
    border-radius: 8px;
}

.info-card-picture img{
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.info-card a{
    color: white;
    background: #193f32;
    padding: 1rem;
    width: auto;
    text-align: center;
    transition: 300ms ease-in-out;
}

.info-card a:hover{
    background: #0a0a0a;
}

.info-card-title h1{
    color: white;
    width: auto;
    font-size: 24px;
}

.info-card-content{
    color: rgba(255, 255, 255, 0.79);
}

#map {
    position: absolute;
    top: 0;
    margin-top: 0.5rem;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    height: max-content;
    background: #131313;
    color: white;
    font-size: 20px;
    z-index: 15!important;
    text-align: center;
}

::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
    height: 10px;
}
::-webkit-scrollbar-track-piece  {
    background-color: #F8E183;
}
::-webkit-scrollbar-thumb:vertical {
    height: 30px;
    background-color: #F8E183;
}

.leaflet-left{
    margin-top: 4rem;
}