/* (c) 2026 by ilovedmymtv@proton.me. All rights reserved. */
#playlist {
    background-color: #f8f9fa;
    padding: 15px;
    max-height: 100vh; /* Set a maximum height equal to the viewport height */
    overflow-y: auto; /* Add a vertical scrollbar when needed */
}

#videoPlayer {
    width: 100%;
    height: auto;
}

// BEGIN SITE
.them {
    font-style: italic;
    text-decoration: underline;
    font-weight: bold;
    color: orange;
}
html, body {
    height: 100%;
}
body {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 5px;
    font-family: 'Gudea','Myriad Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
}
:root {
    --maincolor: #000000;
    --secondcolor: #fffd00;
    --mainfont: "Referenz Grotesk",sans-serif;
    --secondfont: 'Gudea','Myriad Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
    --alpha: 0.8;
}

#frame {
    width: 100%;
    height: 100%;
}

#menu {
    top: 0px;
    width; 100%;
    border-bottom: 5px solid #cccccc; 
}
#menu div {
    display: inline-block;
//    width: 120px;
    padding: 5px;
    background-color: #eeeeee;
}
#menu .item {
    cursor: pointer;
}
#menu .item.selected {
    background-color: orange;
    font-weight: bold;
}
#menu .item:hover {
    background-color: orange;
    font-weight: bold;
}
#menu .slogan {
    float: right;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    background-color: orange;
}


#content {
    height: calc(100% - 50px);
    border-left: 5px solid #cccccc; 
    border-right: 5px solid #cccccc; 
    border-bottom: 5px solid #cccccc; 
}

#logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
 }

#splashscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: 400px;
    color: var(--maincolor);
    text-align: center;
    font-family: var(--secondfont);
    font-weight: bold;
    font-size: 26px;
}

#splash {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: 400px;
    height: 400px;
    color: var(--maincolor);
    text-align: center;
    vertical-align: middle;
    font-family: var(--secondfont);
    border: 20px solid #000000;
}
#splash div.head {
    margin-top: 100px;
}
#splash div.title {
    font-size: 46px;
    font-weight: bold;
}
#splash div.text {
    font-size: 30px;
}
#splash div.slogan {
    font-style: italic;
}

.logo.large {
    height: 390px;
    width: 390px;
}
.logo.small {
    width: 100%;
    cursor: pointer;
}
a {
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    filter: opacity(.8);
}
// END SITE
