* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #222222;
    color: #0073ff;
    overflow-y : scroll;
}

#menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(22, 22, 22, 0.95);
}

#menu ul {
    list-style-type: none;
    text-align: center;
    display: flex;
    justify-content: center;
}

#menu li {
    background-color: black;
}

#menu li a {
    display: block;
    /*width: 85px;*/
    color: white;
    text-decoration: none;
    padding: 5px 8PX;
}

#menu ul li ul {
    display: none;
}

#menu ul li:hover ul {
    display: block;
}

#menu li:hover ul li {
    float: none;
}

#menu li ul {
    position: absolute;
}

#menu li a:hover {
    color: #FFD700;
    background-color: #2c224c;
}

a:link {
    color: #78adcf;
}

a:visited {
    color: #78adcf;
}

a:hover {
    color: #00fdff;
}

a:active {
    color: #78adcf;
}

a:link,
a:visited,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

.selected {
    /*background-color: #000;*/
    color: #ffffff !important;
}

.gallery {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.gallery li {
    margin: 0;
    padding: 1px;
}

.gallery a {
    display: block;
    position: relative;
    text-decoration: none;
}

.gallery img {
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    min-width: 0;
}

#special {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    /*background: #ff0000;*/
}

.intro,
.red {
    width: 100%;
    text-align: center;
}

.intro {
    margin-top: 100px;
}

.red {
    color: #ff0000;
    margin-top: 20px;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 46%;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #0073ff;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}

#back-to-top:hover {
    background: #ff8c00;
}

#back-to-top.show {
    opacity: 0.5;
}