﻿#slideshow {
    width:100%;
    height: 100vh;
    max-height: 100vw;
    /*display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-flex: 1;*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*flex: 1;*/

    min-height: 300px;
}

#slideshowTextDiv {
    box-sizing: border-box;
    border-top: 5px solid #0080FF;
    width: 100%;
    height: 100px;
    background-color: #E3E3E3;
    text-align: center;
}

#slideshowText {
    width: auto;
    font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
}

#mySlides {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 2000px;
    background-image: url(images/commercial-52limestreet.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    flex: 1;
}

#slideshowDescriptions {
    width: auto;
    font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    font-size: 20px;
}

#slide_buttons div{
    width: 50px;
    display: flex;
    align-items: center;
    height: 100%;
    background: rgba(62,66,69,0.5);
    cursor: pointer;
    color: white;
}

#next:hover, #previous:hover{
    color: #0080FF;
}

#header_space{
    height: 100px;
    width: 100%;
    visibility: hidden;
}

#slide_buttons{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
