body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e2f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #eaeaea;

}
header {
    background-color: #6a0dad;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 2px;
}
#sideWidget {
    height: 100%; /* Die gesamte Höhe der Seite */
    width: 150px; /* Breite des Widgets */
    position: fixed;
    top: 0;
    left: -250px; /* Startet außerhalb des Bildschirms */
    background-color: #8a2be2;
    color: white;
    padding-top: 20px;
    transition: 0.3s; /* Sanfte Übergangseffekte */
    z-index: 1000; /* Stellt sicher, dass es über dem Inhalt liegt */
}

/* Das Seiten-Widget-Links-Icon */
#openBtn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Menü Links im Widget */
#sideWidget a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    display: block;
    transition: 0.3s;
}

/* Hover Effekt für Links */
#sideWidget a:hover {
    background-color: #7b68ee;
}
nav {
    text-align: center;
    margin-top: 10px;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #eaeaea;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
}
nav a:hover {
    color: #c084fc;
    transform: scale(1.1);
}


section {
    max-width: 900px;
    margin: 40px auto;
    padding: 10px;
    background-color: rgba(50, 20, 100, 0.85);
    color: #f1e4ff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    transition: transform 0.3s ease;
}
section:hover {
    transform: translateY(-5px);
}


section#projects,
section#temporary {
    max-height: 15vh;
    overflow-y: auto;
}


footer {
    background-color: #4a007a;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.4);
}

#button-container {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 1000;
}
section#button-container {
    background-color: rgba(50, 20, 100, 0.0);
}
#button-container button {
    background-color: #9a00e6;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
}
#button-container button:hover {
    background-color: #c084fc;
    transform: translateY(-3px) scale(1.05);
}


.context-menu {
    display: none;
    position: absolute;
    background-color: #f1e4ff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.context-menu ul li {
    padding: 10px 12px;
    cursor: pointer;
    color: #6a0dad;
    transition: background-color 0.2s, color 0.2s;
}
.context-menu ul li:hover {
    background-color: #d3b3fc;
    color: #4a007a;
}


@media (max-width: 768px) {
    section {
        padding: 20px;
    }
    section#downloads,
    section#temporary {
        max-height: 20vh;
    }
    nav a {
        font-size: 16px;
    }
    header h1 {
        font-size: 24px;
    }
    #button-container {
	width: 120;
	height: 40;
        left: 5px;
        bottom: 35px;
    }
    
    #button-container button {
        left: 5px;
	font-size: 12px;
	padding: 5px 10px;        
  	width: 100px;
        height: 30px;
    }
}
