Changed around line 1
+ :root {
+ --primary: #FF6B6B;
+ --secondary: #4ECDC4;
+ --dark: #2C3E50;
+ --light: #ECF0F1;
+ }
+
+ body {
+ background: linear-gradient(135deg, var(--dark), #1a1a1a);
+ color: var(--light);
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ margin: 0;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .slideshowSlide {
+ text-align: center;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 20px;
+ backdrop-filter: blur(10px);
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
+ margin: 2rem;
+ max-width: 90vw;
+ min-height: 60vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ transform: translateZ(0);
+ transition: all 0.3s ease;
+ }
+
+ .slideshowSlide:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ font-weight: 800;
+ }
+
+ ul {
+ list-style: none;
+ padding: 0;
+ font-size: 1.5rem;
+ line-height: 2;
+ }
+
+ .slideshowNav {
+ position: fixed;
+ bottom: 2rem;
+ left: 0;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ z-index: 100;
+ }
+
+ .slideshowNav a {
+ color: var(--light);
+ font-size: 2rem;
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ background: rgba(255, 255, 255, 0.1);
+ backdrop-filter: blur(5px);
+ transition: all 0.3s ease;
+ }
+
+ .slideshowNav a:hover {
+ background: var(--primary);
+ transform: scale(1.1);
+ }
+
+ @media (max-width: 768px) {
+ .slideshowSlide {
+ padding: 1rem;
+ margin: 1rem;
+ min-height: 70vh;
+ }
+
+ h1 {
+ font-size: 1.8rem;
+ }
+
+ ul {
+ font-size: 1.2rem;
+ }
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ .slideshowSlide {
+ animation: fadeIn 0.5s ease-out;
+ }