html {
    height: 100%;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
	position: relative;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: transparent; 
    color: #fff;
    overflow-x: hidden;
	font-family: 'Raleway', sans-serif;
}
#navbar {
    background-color: transparent;
    padding: 15px;
    position: fixed;
    width: 100%;
    z-index: 1;
}

.menu-icon {
    cursor: pointer;
    display: inline-block;
    float: left;
    color: #fff;
    font-size: 20px;
    margin-left: 0px; 
	margin-right: 1px;
}

.bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 6px 0;
    transition: 0.4s;
}

#sidebar {
    height: 100vh;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 80px; 
    overflow-x: hidden;
    transition: 0.5s;
}

#sidebar a {
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    white-space: nowrap;
    transition: 0.3s;
}

#sidebar a:hover {
    color: #f1f1f1;
}

#content {
    margin-left: 0;
    padding: 40px; 
    transition: margin-left 0.5s;
}

#container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center; 
}

#bouncing-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: bounce 2s infinite alternate; 
        }

        @keyframes bounce {
            0% {
                transform: translate(-50%, -50%) translateY(0); 
            }
            100% {
                transform: translate(-50%, -50%) translateY(300px);
            }
        }

/* Leaderboard Subs u. Bits*/

.podium {
            display: flex;
            justify-content: space-around;
            margin-bottom: 50px;
        }

        .podium-column {
            flex: 1;
            text-align: center;
        }

        .podium-place {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .podium-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .podium-count {
            font-size: 16px;
        }


/* Social Media Buttons-Stil */

.social-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}


.facebook {
    background-color: #3b5998;
    color: #fff;
}

.facebook:hover {
    background-color: #2d4373;
}


.twitter {
    background-color: #1da1f2;
    color: #fff;
}

.twitter:hover {
    background-color: #0b7bc5;
}


.instagram {
    background-color: #e4405f;
    color: #fff;
}

.instagram:hover {
    background-color: #c13584;
}


.twitch {
    background-color: #6441A4; 
    color: #fff;
}

.twitch:hover {
    background-color: #593a8e;
}


.discord {
    background-color: #7289DA; 
    color: #fff;
}

.discord:hover {
    background-color: #677bc4;
}


.tiktok {
    background-color: #69c9d0; 
    color: #fff;
}

.tiktok:hover {
    background-color: #5bafc2;
}


.youtube {
    background-color: #FF0000; 
    color: #fff;
}

.youtube:hover {
    background-color: #cc0000;
}

.schedule-table {
    margin: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.table-container {
	max-width: 100%;
	border: none;
	padding-bottom: 70px;
	display: flex;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	/* box-shadow: 0px 0px 10px rgba(0, 0, 0, 1.5);
	border: 2px solid gray;
	transition: border-color 0.3s, box-shadow 0.3s; */
}

table, th, td {
	border: none;
}

tr {
	font-size: 23px
}

th, td {
	padding: 30px;
	text-align: left;
}

th {
	background-color: #b0c43d;
	color: black;
	border-radius: 0;
}


.profile-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .profile-img {
            border-radius: 50%;
            margin-right: 20px;
            width: 70px;
            height: 70px;
            border: 4px solid #3498db;
            transition: transform 0.3s ease-in-out;
        }

        .profile-container:hover .profile-img {
            transform: scale(1.1); 
        }

        #twitchName {
            font-weight: bold;
            margin: 0;
            text-align: center;
            line-height: 70px;
            transition: color 0.3s;
        }

        .profile-container:hover #twitchName {
            color: #3498db;
        }

/* CSS-Stilvorlage für die Bilder in der Tabelle */
.profile-picture {
    width: 50px;
    height: 50px; 
    border-radius: 50%; 
    object-fit: cover;
}
		
		
/* Stil für den Button */
.modern-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background-color: #4CAF50; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Änderung der Hintergrundfarbe beim Hover */
.modern-button:hover {
    background-color: #45a049;
}

/*Tabellen für Projekte */

.table-container {
    display: flex;
}

.table-wrapper {
    flex: 1;
    margin-right: 20px;
}

.project-table {
    width: 80%;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.project-table th,
.project-table td {
    padding: 8px;
    text-align: left;
    /* border-bottom: 1px solid #ddd; */
}

.project-table caption {
    font-size: 1.2em;
    font-weight: bold;
	color: black;
    padding: 10px;
    background-color: #b0c43d;
    border-radius: 8px 8px 0 0; 
    border-bottom: 0px solid #ddd; 
    margin-bottom: -1px; 
    display: block; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

/*SNES Controller auf Projekte Seite */

.image-container {
    text-align: center;
}

.imageee {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease; /* Animation für das Bild */
}

.imageee:hover {
    transform: rotate(10deg) scale(1.2); /* Rotieren und Vergrößern beim Überfahren */
}



/* .project-table caption:hover {
    background-color: #697524;
} */




/* .footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px; 
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-size: 10px; 
} */

/* Stile für neutrale Links */
/* a {
    color: #333; 
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #555;
}

a:visited {
    color: #666; 
} */

.menu-icon:hover + #sidebar,
#sidebar:hover {
    width: 200px; 
}

.menu-icon:hover .bar:nth-child(1),
#sidebar:hover .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-icon:hover .bar:nth-child(2),
#sidebar:hover .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon:hover .bar:nth-child(3),
#sidebar:hover .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Media Query für Bildschirme kleiner als 600px (z.B. Mobilgeräte) */
@media screen and (max-width: 600px) {
    .social-buttons {
        flex-direction: column; 
        align-items: center; 
    }

    .social-button {
        margin: 10px 0;
    }

    #navbar {
        display: none; 
    }

    #content {
        padding: 20px; 
    }

    #container {
        margin-top: 20px; 
    }
	
	#twitch-iframe {
        width: 100%; 
        height: 200px; 
    }
}
