@font-face {
    font-family: 'Elzevir';
    src: url('/assets/fonts/dtlelzevirt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Elzevir Bold';
    src: url('/assets/fonts/dtlelzevirt-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Elzevir Italic';
    src: url('/assets/fonts/dtlelzevirt-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Elzevir, serif;
    height: 100%;
    background: url('/assets/background.jpg') no-repeat center center fixed, #081F4E;
    background-size: cover;
    overflow: hidden;
}

a {
    font-family: Elzevir Bold, serif;
    color: #020a21;
    text-decoration: none;
}

a:visited {
    color: #081f4e;
}

strong {
    font-family: Elzevir Bold;
}

em {
    font-family: Elzevir Italic;
}

h1 {
  font: normal 16pt Elzevir Bold, serif;
  margin: 0 1em 0.5em;
  padding: 0;
}

.header {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.title-image {
    max-width: 100vw;
    height: auto;
}

.container {
    display: flex;
    height: calc(100% - 232px);
}

.sidebar {
    width: 200px;
    max-width: 35%;
    height: calc(100vh - 232px);
    background: url('/assets/options.png') no-repeat center top;
    background-size: cover;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow-y: auto;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    padding-top: 100px; 
    width: calc(100% - 20px); 
    box-sizing: border-box; 
}

.sidebar-content input[type="radio"] {
    display: none; 
}

.sidebar-content label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-family: 'Elzevir Bold'; 
    font-size: 16px; 
    padding: 4px; 
    margin-bottom: 10px;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.sidebar-content input[type="radio"]:checked + label {
    background-color: #3b3720; 
}

.sidebar-content .radio-custom {
    display: none; 
}

.content-panel {
    flex: 1;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.83);
    overflow-y: auto;
    box-sizing: border-box;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
}

.media-container img,
.media-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer {
    width: 100%;
    height: 132px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: white;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}
