/* @font-face Regel zur Einbindung von Roboto Slab */
@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Roboto Slab', serif;
    font-size: 2em;
    font-weight: bold;
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
}

/* Sidebar styles */
.sidebar {
    width: 20%;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 80%;
    margin-bottom: 20px;
    background: #000000;
    padding: 1em;
    margin: 1em auto;
    max-width: 200px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Content styles */
.content {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 4em;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    width: 100%; /* Use full width */
    height: 0; /* Set height to 0 */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625 or 56.25%) */
    margin-bottom: 10px; /* Space below the video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Remove default border */
}

.content p {
    text-align: center; /* Center align text */
    margin-top: 10px; /* Add space above the text */
}

/* Responsive for small devices */
@media screen and (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: 50%;
    }

    .content {
        width: 100%;
        height: 50%;
        padding: 2em; /* Adjust padding for smaller screens */
    }

    body {
        flex-direction: column;
    }
}
