

a:link { text-decoration: none; color: inherit; }
a:visited { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: inherit; }

*::-webkit-scrollbar-track{
    -moz-box-shadow: 0;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.9);
    box-shadow:  inset 0 0 2px rgba(0,0,0,0.9);
    border-radius: 5px;
    background-color: silver; }
*::-webkit-scrollbar{
    width: 11px;}
*::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: limegreen;
    background-image: -webkit-linear-gradient(90deg,
    transparent,
    rgba(0, 0, 0, 0.4) 50%,
    transparent,
    transparent) }

a:focus,
select:focus,
textarea:focus,
button:focus,
input:focus{ outline: none; }


/* Button Styles */
button {
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    cursor: pointer;
}

/* Input Styles */
select,
input[type="text"],
input[type="email"],
input[type="password"] {
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
select { padding: 5px 10px; }


body, html {
    background-color: #666;
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 18px;
    color: white;
    margin: 0;
    padding: 0;
}

#icon-root {
    position: fixed;
    top: 10px;
    left: 15px;
    width: 35px;
    cursor: pointer;
    z-index: 6;
}

#fixed {
    background-color: #666;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
}

#header,
#menu {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 25px;
    color: white;
    width: 100%;
    padding: 20px 0;
    z-index: 5;
}

#menuIcon {
    position: fixed;
    top: 5px;
    left: 10px;
    z-index: 2;
    cursor: pointer;
}
#menu {
    display: block;
    top: 45px;
    left: 10px;
    width: 125px;
    border: 2px solid black;
    border-radius: 5px;
    z-index: 2;
}
#menu button {
    font-size: 16px;
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    width: 100%;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

#navbar {
    margin-top: 65px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.navbar {
    text-align: center;
    width: auto;
    margin: auto;
}
.navbar td {
    width: auto;
    padding: 2px;
}
.navbutton {
    background-color: white;
    text-align: center;
    font-size: 175%;
    padding: 0px 10px;
}

#notifications {
    background-color: #aaa;
    width: 93%;
    padding: 5px 15px;
    border: 1px solid black;
    border-radius: 5px;
}

#webpage {
    background-color: #35d;
    max-height: 90%;
    width: 90%;
    font-family: Georgia;
    color: #fff;
    margin: auto;
    margin-top: 35px;
    padding: 15px;
    border-radius: 5px;
    border: 2px solid black;
    z-index: 1;
    overflow-y: auto;
}

#title {
    margin-top: 50px;
    padding: 5px 15px;
}









