body {
    background: darkred url("backgr.jpg") no-repeat fixed center;
    color: lightgray;
}

h1 {
    font-size: 2rem
}

h2 {
    font-size: 1.5rem
}

main {
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 1em;
    margin: 2rem auto;
    width: 900px;
    background-color: rgba(151, 7, 7, 0.7);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: bottom;
    border-bottom: 1px dotted lightgray;
    padding-bottom: 1rem;
    /* border: 1px solid green; */
    position: relative;            
}
#wBckGrd{
    background-image: url("../design/logoXS.png");
    /* background-position: right top;  */
    background-position: 80% 0px;
    background-repeat: no-repeat;
}
/* 
#titel {
    border: 1px solid blue;
} */

#titel p{
    margin-bottom: 0;
}

/* Navigation Area  with Buttons*/
nav {
    width: 50%;
    position: relative;
    /* border: 1px solid lightblue; */
}
nav div#menuBtns {
    position: absolute;
    bottom: 0;
    right: 0;
    /* border: 1px solid yellowgreen; */
}
nav div#menuGlobalBtns {
    position: absolute;
    top: 0;
    right: 0;
}
/* nav div#menuGlobalBtns a{
    color: lightgray;
}
nav div#menuGlobalBtns a:hover{
    text-decoration: none;
    color: white;
} */

nav a{
    color: lightgray;
    margin: 0 0.5rem;
}

nav .dropdown-item{
    margin: 0;
}

nav a:hover{
    text-decoration: none;
    color: white;
}

/* increase the tootip width from default 200px for KONTAKT link*/
.tooltip-inner {
    max-width: 350px;
    /* If max-width does not work, try using width instead */
    /* width: 350px;  */
}
/* END Navigation Area  with Buttons*/
#news{
    margin-top: 2em;
}

#news > div {
    display: flex;
    margin-top: 1em;
}
#news img {
    margin-right: 1rem;
    padding: 4px;
    background-color: lightgray;
}
#news a{
    color: lightgray;
    /* text-decoration-line: underline;
    text-decoration-style: dotted;
    text-underline-position: under; */
}
#news a:hover{
    text-decoration: none;
    color: white;
}


article {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    /* border: 1px solid red; */
}

/* styles für cast fotos layer*/
#castFotosDiv{ 
    display: none;
}
#castFotosDiv .card{
    width: 185px;
    margin: 1rem 1rem;
    color: darkred;
    text-align: center;
    background-color: transparent;
}
.castFotosRow{ 
    display: flex;
}
/* END OF styles für cast fotos layer*/

/* #cast {
    border: 1px solid green;
} */

/* aside {
    border: 1px solid blue;
} */

aside img {
    display: block;
    margin: 1rem auto 2rem auto;
    /* border: 1px solid lightgray; */
    padding: 5px;
    background-color: lightgray;
    /* box-shadow: 10px 10px 10px rgba(230, 216, 216, 0.5);  */
}

/* aside table{
    
} */

aside table tr.abstand td {
    padding-top: 1rem;
}

/* #cast td {
    color: lightgray;
} */

td {
    padding: 0;
    vertical-align: top;
}

td:first-child {
    text-align: right;
    padding-right: 1rem;
}

.btn {
    margin-left: 1rem;
}

/* table, th, td {
border: 1px solid black;
} */
td {
line-height: 120%;
} 

#divCarousel{
    margin-top: 2rem;
    display: none;
}

footer{
text-align: center;
border-top: 1px dotted lightgray;
color: darkgray;
padding-top: 1rem;
margin-top: 2rem;
}

.modal-dialog{
    color: #000;
}
.modal-title span{
    font-size: 0.8rem;
}

#Presse3 table {
    width: 100%;    
    margin-top: 10pt
}
#Presse3 td {
    text-align: left;
    /* width: 25%; */
    border-bottom: 1px solid #ddd;
}

#Presse3 td:last-child {
    width: 30%;
}


/* Below for image flipping only */
.scene {
    width: 182px;
    height: 243px;
    border: 1px solid #CCC;
    /* margin: 40px 0; */
    /* margin: 10px auto 50px auto; */
    perspective: 600px;
    }

    .flipCard {
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    }

    /* .flipCard.is-flipped {
    transform: rotateY(180deg);
    } */

    .scene:hover .flipCard {
      transform: rotateY(180deg);
    }

    .cardFace {
    position: absolute;
    width: 100%;
    height: 100%;
    /* line-height: 260px; */
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    }

    .cardBack {
    transform: rotateY(180deg);
    }
    /* above for image flipping only */