body {
    background-color: rgb(20, 20, 20);
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#div_not_found {
    user-select: none;
}

button {
    color: white;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: black;
    font-size: 18px;
    display: block;
    height: 30px;

}

#home_flex_inline_header {
    align-content: center;
    align-items: center;
    background-color: black;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 60px;

    /* Scrollbar */
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

}

#home_flex_inline_header>* {
    flex: 0 0 auto;
    /* Avoid item reduction */
}

#home_flex_inline_container {
    padding-bottom: 20px;
}

#home_flex_inline_header h3 {
    margin: 0px 10px 0px 10px;
    padding: 10px 10px 10px 10px;
    border: 1px solid gray;
}

#bgr {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;


}

#home_flex_inline_header button {
    height: 50px;
    margin: 5px 0px 10px 10px;
}

#home_flex_inline_header button:disabled {
    color: gray;
}

#home_flex_inline_header button:hover {
    text-decoration: underline;
}

button:hover {
    background-color: gray;
    text-decoration: underline;
    color: white;
}

.ilk_element_text {
    color: lightgray;
}

#dlItemList {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ico_ires2 {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("res/imageres2.png");
}

#home_footer {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    width: 100vw;
}

#tagfooter {
    position: absolute;
    display: inline-flexbox;
    left: 50%;
    top: 95%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#home_footer footer {
    text-align: center;
    width: 100vw;
    color: gray;
}

#footer_link_youtube,
#footer_link_discord,
#footer_link_instagram {
    color: white;
    opacity: 20%;
    user-select: none;
    pointer-events: visible;
    transition: opacity 0.3s ease;
    font-style: normal;
    text-decoration: none;
    /* Remove <a> text decoration*/
}

#footer_link_youtube:hover,
#footer_link_discord:hover,
#footer_link_instagram:hover {
    cursor: pointer;
    color: gray;
    opacity: 100%;
}