@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kanit", serif;
}
body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: white;
}
#map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.menu-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(31,31,31,0.9);
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
.menu-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}
.menu-content h2 {
    text-align: center;
    margin-bottom: 10px;
}
.ticket {
    background-color: #1f1f1f;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    text-align: center;
}
.nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #1f1f1f;
}
.nav-bar .nav-item {
    color: #555;
    font-size: 1.5em;
}
.font-light {
    font-weight: 300;
}
.font-regular {
    font-weight: 400;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.font-black {
    font-weight: 900;
}
a {
    text-decoration: none;
    color: white;
}