@font-face {
    font-family: 'Nunito Regular';
    src: url('http://37.187.125.16/Three/src/fonts/Nunito/static/Nunito-Regular.ttf') format('truetype');
}

body {
    margin: 0px;
    height: 100vh;
}

canvas {
    display: block;
}

#panel {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 10px;
    border-radius: 5px;
}

#panel label, #reserve, .reserve-item {
    color: #cccccc;
    font-family: 'Nunito Regular'; 
}

#reserve{
    margin-top: 20px;
    text-align: center;
}

.reserve-item{
    margin-bottom: 15px;
}

.reserve-item > .reserve-item-img {
    height: 50px;
    width: 50px;
}

.hidden {
    display: none;
}




/*** DIALOGUE FLEUR ****/
.interaction_text {
    font-family: 'Nunito Regular';
    position: fixed;
    bottom: 20px;
    right: -50%;
    left: -50%;
    border: 2px solid black;
    color: white;
    z-index: 9999;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    width: 400px;
    margin: auto;
    text-align: center;
}


