.presentation-container {
    position: absolute;
    z-index: 1;
    transition: transform .4s;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    background-color: red;
    transform: translateY(calc(-100% + 30px));
}

.presentation-container-triggered {
    transform: translateX(0);
}

.presentation-top {
    width: 100%;
    height: calc(100% - 30px);
    background-color: lightyellow;
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
}

.presentation-top-text {
    text-align: center;
}

.presentation-bottom {
    width: 100%;
    height: 30px;
    /* background-color: lightpink; */
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 20px;
    padding-left: 30px;
}

.presentation-bottom:hover {
    cursor: pointer;
}

.presentation-bottom-text {
    /* font-weight: 400; */
}