@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

@font-face {
    font-family: IMGONNAPUTACOMPUTERINMYHEAD;
    src: url('https://assets.codepen.io/605876/Blender-Pro-Bold.otf');
    font-display: swap;
}

:root {
    --bg-colour: #000000;
    --primary-colour: #d0a0ff;
    --secondary-colour: #e0c8ff;
    --accent-1: #8a2be2;
    --accent-2: #a64dff;

    --glass-bg: rgba(40, 0, 70, 0.25);
    --border-glow: rgba(166, 77, 255, 0.6);

    --font: 'Orbitron', sans-serif;
}

/* Base */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-colour);
    font-family: var(--font);
    color: var(--primary-colour);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glowy purple background thing */
body::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(138,43,226,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */

nav ul {
    list-style-type: none;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(100, 0, 200, 0.35),
        rgba(0, 0, 0, 0.95)
    );
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--accent-1);
    z-index: 1000;
}

ul li a {
    display: block;
    color: var(--accent-1);
    padding: 1rem 2rem;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    position: relative;
}

ul li a::after {
    content: "";
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--accent-2);
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--accent-2);
}

ul li a:hover::after {
    width: 60%;
}

#about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sections */

section {
    padding: 8rem 0;
    position: relative;
}

.text-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid rgba(166, 77, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 15px rgba(138, 43, 226, 0.15),
        0 0 40px rgba(138, 43, 226, 0.08);
}

/* Typography */

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    color: var(--secondary-colour);
    text-shadow: 0 0 12px var(--accent-2);
}

h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--accent-2);
}

p {
    margin-bottom: 1.2rem;
    color: var(--primary-colour);
    font-size: 0.95rem;
    line-height: 3.0;
}

strong {
    color: #ffffff;
    text-shadow: 0 0 6px var(--accent-1);
}

ul:not(nav ul) {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

ul:not(nav ul) li {
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    position: relative;
}

ul:not(nav ul) li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-2);
}

/* Links */

a {
    color: var(--accent-2);
    transition: all 0.2s ease;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px var(--accent-2);
}

/* CRT Overlay */

.crt-lines::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 9999;
}

img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid var(--accent-1);
    box-shadow: 0 0 15px rgba(166, 77, 255, 0.4);
}

@media (max-width: 900px) {

    .text-container {
        margin: 0 1.5rem;
        padding: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    ul li a {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
    }
<<<<<<< Updated upstream
=======
}

/* Slideshow */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Mobile Compatibility */

@media (max-width: 768px) {

    section {
        padding: 4rem 0;
    }

    .text-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    /* Stack nav vertically if needed */
    nav ul {
        flex-wrap: wrap;
    }

    nav ul li a {
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }

    /* Make slideshow arrows bigger tap targets */
    .prev, .next {
        padding: 20px;
        font-size: 22px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }
}

/* Scroll Indicator */

.scroll-indicator {
    width: 30px;
    height: 30px;
    margin: 2rem auto 0 auto;
    margin-top: 3rem;
    border-left: 3px solid var(--accent-2);
    border-bottom: 3px solid var(--accent-2);
    transform: rotate(-45deg);
    animation: scrollBounce 2s infinite;
    opacity: 0.8;
}

@keyframes scrollBounce {
    0% { transform: translateY(0) rotate(-45deg); opacity: 0.8; }
    50% { transform: translateY(10px) rotate(-45deg); opacity: 1; }
    100% { transform: translateY(0) rotate(-45deg); opacity: 0.8; }
>>>>>>> Stashed changes
}