#game-scene, #event-scene, #dialogue-scene, #game-menu-scene {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: 100%;
}

.world-event-label {
    position: absolute;
    display: none;
    left: 40px;
    top: 0px;
    width: auto;
    height: 24px;
    font-size: 12px;
    align-content: center;
    padding-left: 30px;
    padding-right: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 2px solid white;
    border-top: 0px;
    outline: 2px solid black;
    animation: we-label 0.4s;
    z-index: 99;
    pointer-events: none;
}

@keyframes  we-label {
    from {top: -40px; }
    to { top: 0px }
}