/* SOME GLOBAL VARIABLES */
:root {
    --main-bg-color: #262930;
    --dark-bg-color: #0e1621;
    --bright-color: #fc7b03;
    --text-highlight-color: #b35d0e;
}

/*setup*/
html {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: var(--dark-bg-color);
    height: 100%;
}

body {
    background-color: var(--main-bg-color);
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

.footer {
    background-color: var(--dark-bg-color);
    grid-row-start: 2;
    grid-row-end: 3;
}

/* hover text is cool */
::-moz-selection {
    background-color: var(--text-highlight-color);
    color: white;
}
::selection {
    background-color: var(--text-highlight-color);
    color: white;
}

/* divider */
hr {
    border: 1px dashed gray;
}

/* Cool buttons */
.coolbutton {
    border: 2px solid black;
    color: white;
    margin: 10px 10px;
    padding: 14px 28px;
    font-size: 16px;
    text-align: center;
    display: inline;
    cursor: pointer;
    border-color: white;
    color: white;
    background-color: rgba(0, 0, 0, 0); /* transparent */
    border-radius: 10px; /* round boi */
}
    .coolbutton:hover {
        background-color: white;
        border-color: rgba(0, 0, 0, 0);
        color: black;
    }
    .coolbutton:focus {
        box-shadow: 0 0 0 2px #ffffff, 0 0 4px 2px var(--bright-color);
        outline: 2px dotted transparent;
        outline-offset: 2px;
    }

/* TOP NAVIGATION BAR*/
.topnav {
    background-color: #474f5c;
    overflow: hidden;
}
    /* base style things */
    .topnav a {
        float: left;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

        /* change the color of links on hover */
        .topnav a:hover {
            background-color: #222a36;
            color: white;
        }

        /* Add a color to the active/current link */
        .topnav a.active {
            background-color: var(--bright-color);
            color: white;
        }

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
    .sticky + .content {
        padding-top: 60px;
    }

/* Side Nav Bar*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover {
            color: #f1f1f1;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}