:root {
    --bg: radial-gradient(circle,
  #000000 0%,
  #020405 18%,
  #03080a 38%,
  #050e10 60%,
  #010808 80%,
  #000000 100%
);
    --glass: linear-gradient(to bottom,
  #000000 0%,
  #020405 10%,
  #03080a 20%,
  #050e10 30%,
  #06181a 100%
);
    --border: rgba(255, 255, 255, 1);
    --glow: rgba(0, 255, 255, 0.2);
    --radius: 12px;
    --box-shadow: 0 0 20px rgba(0, 5, 5, 0.553);
    --text-shadow: 0 0 20px rgb(0, 0, 0);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("/Assets/sky.webp");
    
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-family: monospace;
    color: white;

    animation: fadeIn 0.8s ease-out;
}

p {
    font-weight: bold;
    text-shadow: var(--text-shadow);
}


.MainTerminal {
    width: min(95vw, 1400px);
    height: min(95vh, 900px);

    padding: 20px;

    background: rgba(255, 255, 255, 0), 0;
    backdrop-filter: blur(12px);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: 0 0 10px rgba(0, 5, 5, 0.553);
    

    display: flex;
    flex-direction: column;
    gap: 20px;

    animation: terminalGlow 4s ease-in-out infinite;
}

.Navigation-Stuff {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 2rem;

    padding: 10px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: rgba(0,0,0,0.4), 1;
    box-shadow: var(--box-shadow);
}

.Navigation-Stuff img {
    width: 40px;
}

.Holder {
    flex: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 15px;
}

.Topics {
    display: flex;
    flex-direction: column;
    gap: 12px;

    height: 100%;
}

.Sub1Terminal {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 15px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--box-shadow);

    transition: transform .25s ease, box-shadow .25s ease;
}

.Sub1Terminal:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0,255,255,0.25);
}

.MainTerminal2 {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;

    background: var(--glass), 0.2;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 0 20px rgba(0, 5, 5, 0.553);
}

.MainTerminal3 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.MainTerminal3 img {
    width: clamp(60px, 6vw, 120px);
}

.MainHeading {
    font-size: clamp(2rem, 2vw, 4rem);
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.705);
}

.Main2 {
    margin-top: 20px;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    line-height: 2;

    text-shadow: var(--text-shadow);
}

a {
    color: white;
    text-decoration: none;
    transition: 0.2s ease;
}

a {
    -webkit-tap-highlight-color: transparent;
    text-shadow: var(--text-shadow);
}

a:hover {
    color: rgb(0, 255, 183);
    transform: translateY(-2px);
}

img {
    transition: 0.3s ease;
    filter: drop-shadow(0 0 30px rgb(11, 0, 73));
}

img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgb(11, 0, 73));
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes terminalGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0,255,255,0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0,255,255,0.35);
    }
}

@media (max-width: 900px) {

    body {
        align-items: flex-start;
        padding: 10px;
    }

    .MainTerminal {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .Holder {
        grid-template-columns: 1fr;
    }

    .MainTerminal3 {
        flex-direction: column;
        text-align: center;
    }

    .Navigation-Stuff {
        gap: 1rem;
    }
}

@media (max-width: 900px) {

    .Holder {
        display: flex;
        flex-direction: column;
    }

    .Topics {
        order: 2;
    }

    .MainTerminal2 {
        order: 1;
    }
}

@media (max-width: 900px) {

    .Navigation-Stuff {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }

    .Navigation-Stuff a {
        font-size: 14px;
    }

    .Navigation-Stuff img {
        width: 35px;
    }

    .logo {
        flex-basis: 100%;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 900px) {
    .MainTerminal3 img {
        display: none;
    }
}

