:root {
    --text-color: white;
}

@font-face {
    font-family: 'roboto';
    src: url('/assets/Fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'ubuntu';
    src: url('/assets/Fonts/Ubuntu-Regular.ttf');
}

@font-face {
    font-family: 'anton';
    src: url('/assets/Fonts/Anton-Regular.ttf');
}


body {
    background-color: black;
    background-image: url(https://www.nasa.gov/wp-content/uploads/2024/11/pia22081orig.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text-color);
    height: 100%;
    margin: 20px;
}

a {
    text-decoration: none;
}

nav {
    width: 100%;
    height: 100px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

#page-title {
    font-family: anton;
    letter-spacing: 10px;
    font-size: 100px;
    line-height: 100px;
    height: 100px;
    display: flex;
    color: var(--text-color);
}

#page-title div {
    font-size: 40px;
    height: 100%;
    line-height: inherit;
}

#nav-item-container {
    display: flex;
}

#nav-item-container a {
    color: var(--text-color);
    font-family: ubuntu;
    margin-left: 20px;
}

.nav-item {
    width: fit-content;
    height: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 100px;
}

.nav-item:hover {
    text-decoration: underline;
}