@import url("Themes/Default.css");

@import url("Navbar.css");

*
{
    box-sizing: border-box;
}

html, body
{
    margin: 0;
    padding: 0;
    
    font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    
    color: var(--text-primary);
}

body
{
    margin: 5vh 15vw;
    
    position: relative;
    z-index: 1;
    
    background-image: url(https://noctuarystudios.com/assets/images/readingnooksunset.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.text-muted
{
    color: var(--text-muted);
}

a:link,
a:visited
{
    color: var(--accent);
    text-decoration: none;
}

a:hover
{
    color: var(--accentHover);
}

a:active
{
    color: var(--accentActive);
}

main
{
    /* I don't understand why it's 145px, but it is so eh. */
    min-height: calc(100dvh - 65px);
    height: 100%;
    
    padding: 0 var(--padding);
}

hr
{
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-color: whitesmoke;
}

h1
{
    font-size: 48px;
    margin: 0;
}

p:first-child
{
    margin-top: 0;
}

p:last-child
{
    margin-bottom: 0;
}

#somethingQuiteCool
{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer
{
    text-align: center;
    margin: 10vh 10vw;
}