:root {
    --base-color: #000000;
    --text-color: #ffffff;
    --primary-color: #0000ff;
    --secondary-color: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color: var(--text-color);
}

body {
    background-color: var(--base-color);
}

nav {
    margin: 1em auto 3em auto;
    width: min(1000px, 100%);
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 2em;
}

nav li:first-child {
    margin-right: auto;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
}

nav a:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border-radius: 1em;
    object-fit: cover;
    object-position: bottom;
}

img:hover {
    scale: 1.05;
}

.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#jsbutton {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--primary-color);
    border-radius: .5em;
}

#jsbutton:hover {
    scale: 1.05;
    background-color: var(--secondary-color);
}

.flex-container {
    display: grid;
    justify-content: center;
    align-items: center;
}

.header-glow {
    color: var(--text-color);
    background-color: var(--base-color);
    text-align: center;
    font-size: 70px;
    text-shadow: 0 0 20px var(--primary-color)
}

.big-text {
    color: var(--text-color);
    background-color: var(--base-color);
    text-align: center;
    font-size: 70px;
}
.hidden-text {
    color: var(--base-color);
    background-color: var(--base-color);
    text-align: center;
    font-size: 10px;
}

section {
    display: none;
}

section#home {
    display: block;
}

section:target {
    display: block;
}