@charset "UTF-8";

/*
Sizzyl's Website CSS Default/Dark Mode Styling
Sets extra attributes so that the site looks nicer.
NAV:
-ELEMENTS (general text, buttons, etc.)
-Divs (different types of things)
*/

/*NAV: elements */
body /* attributes applied to all text (other things like this apply to those things)*/
{
    text-align: center;
    color: white;
    text-emphasis-color: white;
    text-decoration-color: red;
    background-color: black;
    font-size: 15px
}

h1 
{
    color: rgb(34, 204, 139);
    text-align: center;
}
h2
{
    color:rgb(117, 13, 214);
    text-align: center;
}
marquee { /*scrolling text*/
    direction: scroll; 
    font-size: 20px;
}
button {
    width: auto;
    text-size-adjust: inherit;
    background-color: rgb(53, 53, 53);
    color: rgb(8, 99, 202);
}
ul {
    /* centers list elements */
    display: table;
    margin: 0 auto;
    list-style-type: circle;
}
il {
    display: inline;
}
a {
    color: rgb(78, 78, 245);
}
a:link {
    color: rgb(78, 78, 245);
}
a:visited {
    color: rgb(78, 78, 245);
}

/*NAV: Divs*/
#img_display {
    display: block;
    align-items: center;
    list-style-type: none;
}

#img_display li {
    display: inline-block;
    text-align: center;
    max-height: 100;
    max-width: 128;
}

#img_display li img {
    max-width: 100%;
    height: auto;
}

/*nav bar*/
#nav_bar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(7, 7, 7)
}
#nav_bar {
    display: flex;
}
#nav_logo {
    height: auto;
    width: auto;
    float: left;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
}
#nav_list {
    float: right;
    list-style: none;
    margin: 0;
    padding: 10px;
}
#nav_item {
    display: inline-block;
    margin-left: 70px;
    padding-top: 25px;
    position: relative;
    cursor: pointer;
    font-size: 12px;
}
#nav_link {
    color: rgb(163, 92, 0);
    text-transform: uppercase;
    text-decoration: none;
}
#nav_link:link {
    color: rgb(163, 92, 0);
}
#nav_link:before {
    content: '';
    display: block;
    height: 5px;
    width: 0%;
    background-color: rgb(2, 80, 168);
    position: absolute;
    top: 0;
    transition: all ease-in-out 100ms;
}
#nav_link:hover:before{
    width: 100%;
}
#nav_link:hover {
    color:rgb(2, 80, 168);
}
#nav_link:visited {
    color:rgb(163, 92, 0);
}
#nav_link:hover:visited{
    color:rgb(2, 80, 168);
}
