/* Import parent stylesheet */
@import url(../style.css);

/* Phosphor Fill Icons */
@import url(https://unpkg.com/@phosphor-icons/web@2.1.1/src/fill/style.css);

h1 {
    text-align: center;
    margin-inline: 10%;
}

.desktop-nav {
    margin: 0 0.5em;
    gap: 1em;
}

.show-nav {
    margin: 0.5em 0.5em 0 0.5em;
    font-size: 1.5em; 
    display: none;
}

.mobile-nav {
    display: none;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    gap: 0em;
    height: 100%;
}

.nav-links {
    padding: 1.15em;
    background-color: var(--chaotic-n1-800);
    width: 100%;
}

.mobile-nav .nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.hide-nav {
    width: 60%;
    background-color: #00000088;
}

.hide-nav-button {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5em;
}

main {
    background: var(--chaotic-bg);
    border-color: var(--chaotic-border);
    border-radius: 15px;
    border-width: 5px;
    border-style: solid;
    padding: 1.15em;
    margin: 1em 10%;
}

@media screen and (max-width:800px) {
    .desktop-nav {
        display: none;
    }

    .show-nav {
        display: inline-flex;
    }

    .mobile-nav:target {
        display: flex;    
    }
}
