﻿.slidesContainer {
    width: 100%;
    height: 500px;
    position:relative;
    margin-top:30px;
    z-index:999
}

.slideBackground {
    max-height: 490px;
    width:100%;
    object-fit:cover;
    display: block;
    transition: opacity 1s;
    position:absolute;
}
.slideImage {
    max-height: 490px;
    display: block;
    transition: opacity 1s;
    position: relative;
    margin: auto;
    cursor: pointer;
}
.slideDesc {
    max-height: 490px;
    display: block;
    transition: opacity 1s;
    position: absolute;
}

.slideShortCut {
    display: flex;
    align-items: center;
    justify-content:center;
    padding: 5px;
}
.slideShortCutButton {
    cursor: pointer;
    display: inline-block;
    border: 1px solid grey;
    border-radius: 2px;
    width: 3rem;
    height: 0.5rem;
    margin: 0.5rem;
}
/*
@media only screen and (min-width: 1000px) {
    .slideShortCutButton {
        width: 3rem;
        height: 0.5rem;
        margin: 0.5rem;
    }
} 

*/
@media only screen and (max-width: 1000px) {
    .slideShortCutButton {
        width: 40px;
        height: 1rem;
        margin: 1rem;
    }
}

    .slideShortCutCurrent {
        background-color: darkgray;
    }


    .youtubeBackground {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(16,16,16,0.5);
        z-index: 9999;
    }

    .youtubeForeground {
        position: relative;
        display: block;
        margin: auto;
    }