@import "resources.css";

body, a {
    color: var(--greenTitle);
}

footer, header, .container {
    position: fixed;
    left: 0;
}

footer, header, nav {
    background-color: var(--blueLightPanel);
}

footer, header {
    width: 100%;
    height: 4.5rem;
}

footer {
    z-index: 3;
    bottom: 0;
    padding-top: 1rem;
}

header {
    z-index: 4;
    top: 0;
    text-align: center;
}

.container {
    display: grid;
    grid-template-columns: minmax(15%, auto) 1fr;
    grid-template-areas: "left-column right-column";
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    margin-top: 4.5rem;
    margin-bottom: 5.5rem;
}

nav {
    grid-area: left-column;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    overflow-y: auto;
    scroll-behavior: smooth;
}

#content {
    grid-area: right-column;
    padding: 0.5rem;
    overflow-y: auto;
    scroll-behavior: smooth;
}

h1 {
    margin: 0;
}

h2 {
    padding-left: 0.5rem;
    font-size: 8rem;
    margin: 0;
}

h3 {
    margin-left: 1rem;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0;
}

h4 {
    font-size: 1.6rem;
    margin: 0;
}

h5 {
    margin-left: 5rem;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0;
}

h6 {
    margin-left: 7rem;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

a:hover, button:hover {
    color: var(--greenLightTitle);
    cursor: pointer;
}

button {
    color: var(--greenTitle);
    border-style: none;
    background-color: transparent;
}

.indentedInput {
    display: inline-block;
    margin-left: 4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.submitButton {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    font-size: 1.5rem;
}

.result {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

#diceGif {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

#result, #storyPoints {
    display: none;
    margin-left: 40px;
    margin-right: 40px;
}