@import "src/css/fonts.css";

body {
    background-color: #0a0a0a;
    color: white;
    font-family: lt-superior-regular, serif;
    text-align: justify;
    margin: 0;
}

/* HEADERS & PARAGRAPHS */

h1 {
    font-size: 3rem;
    text-align: start;
}

p {
    font-size: 1rem;
}

/* NAVIGATION BAR */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: white;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);

    background-color: rgba(10, 10, 10, 0.85);
    mask-image: linear-gradient(to bottom, #0a0a0a 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #0a0a0a 85%, transparent 100%);
}

nav {
    max-width: 750px;
    margin: 0 auto;
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-item a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-item a:hover {
    color: #8a8a8a; /* TODO: change this to a more appealing grey */
}

.quote {
    text-align: center;
    text-shadow: white 0 0 15px ;
    margin: 1rem auto;
}

.quote-content {
    font-size: 0.8rem;
}

.quote-decoration {
    font-size: 0.6rem;
}

.paragraph-decoration {
    text-align: center;
}
