@font-face {
    font-family: 'Pixel';
    src: url('bulletinV1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Die Leiste am unteren Rand fixieren */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #333;
    padding-bottom: env(safe-area-inset-bottom); /* Für Xiaomi Full-Screen-Gesten */
}

/* Die quadratischen, abgerundeten Felder */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #ff9409; /* Deine Wunschfarbe */
    opacity: 0.6;
    border-radius: 15px; /* Abgerundete Ecken */
    color: #000;
    cursor: pointer;
    transition: transform 0.1s ease;
    padding-bottom:10px;
}

/* Kleiner Effekt beim Tippen */
.nav-item:active {
    transform: scale(0.9);
}

/* Das Icon im Feld */
.icon-box {
    padding-top:5px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* Text unter dem Icon */
.nav-item span {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    
}

/* Optische Hervorhebung des aktiven Tabs */
.nav-item.active {
    box-shadow: 0 0 15px rgba(255, 148, 9, 0.5);
    border: 2px solid #777777;
}

/* Damit der Inhalt der Website nicht hinter der Leiste verschwindet */
body {
    padding-bottom: 150px;
    background-image: url("background.png");
    font-family: 'Pixel', Courier, monospace;
    background-size: 100% auto;

}
