.RandomSlide .item .text {
    display: none;
}
.RandomSlide .item a .text {
	position: absolute;
	display: flex;
	flex-direction: column;
  	justify-content: space-evenly;
	bottom: -110%; 
	background-color: rgba( var(--logo-color-1-rgb), 0.8); 
	width: 100%;
	height: 100%;
	padding: 5px;
	transition: bottom var(--transition-time);
}
.RandomSlide .item:hover a .text { bottom: 0; }

.RandomSlide .item a .text,
.RandomSlide .item a .text .title,
.RandomSlide .item a {
    color: var(--font-color-light);
    hyphens: none;
}
.RandomSlide .item {
    box-shadow: 6px 6px 18px rgba(var(--shadow-color-rgb), 0.35);
    overflow: visible;
}

.canvas{
    padding: 5px;
    overflow: visible;
}

