* {
    tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
}
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    background-color: #f8f8f8;
    /*padding-top: 78px;*/
}
a{
    text-decoration: none;
}
hr {
    border: none;
}

.Header {
    position: fixed;
    top: 0;
    width: 80%;
    height: 78px;
    background-color: rgba(248,248,248,0.92);
    backdrop-filter: blur(18px);
    padding: 0 10% 0 10%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0);
    transition: box-shadow,background-color 0.3s ease;
    z-index: 114514;
}
.Header_Sub {
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.08);
    background-color: rgba(255,255,255,0.92);
}
#Header_WPLite {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}
#Header_WPLite img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}
#Header_WPLite p {
    font-size: 24px;
    font-weight: 722;
    color: black;
}
#Header_Tags {
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 15px;
}
#Header_Tags p a,
#Header_Tools p a {
    height: 48px;
    padding: 8px 18px 8px 18px;
    display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer;
    font-weight: 750;
    transition: color 0.28s;
    color: rgba(0,0,0,0.6);
}
#Header_Tags p a:hover,
#Header_Tools p a:hover {
    color: rgba(0,0,0,1);
}
.Header_Tools_DownloadButton {
    border: 2px solid purple;
    border-radius: 48px;
    border-color: black;
    padding: 8px 12px 8px 12px;
    transition: color,background-color 0.28s;
    color: rgba(0,0,0,1);
    cursor: pointer;
}
.Header_Tools_DownloadButton:hover {
    color: rgba(255,255,255,1);
    background-color: rgba(0,0,0,1);
}
#Header_Tools {
    height: 48px;
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 15px;
}

#Main {
    width: 100%;
    /*padding: 0 15vw 0 15vw;*/
}
#Main_HelloWorld {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Bottom {
    width: 70%;
    padding: 2rem 15% 2rem 15%;
    background-color: #242424;
}

.LogoList {
    display: flex;
}
.LogoList a img {
    width: 24px;
    height: 24px;
}

.TableList {
    display: flex;
    margin-left: auto;
}
.TableList dl {
    min-width: 120px;
}
.TableList dl dt {
    color: rgba(255,255,255,1);
    height: 3em;
}
.TableList dl dd {
    color: rgba(255,255,255,0.6);
    margin: 0;
    height: 2.4em;
    transition: color 0.28s;
    cursor: pointer;
}
.TableList dl dd:hover {
    color: rgba(255,255,255,1);
}
.TableList dl dd a {
    color: rgba(255,255,255,0.6);
    margin: 0 0 1em 0;
    transition: color 0.28s;
    cursor: pointer;
}
.TableList dl dd a:hover {
    color: rgba(255,255,255,1);
}

.ListUI {
    display: flex;
}

.hr_width {
    width: 1px;
    height: auto;
}

@media only screen and (max-width: 1152px) {
    .Header {
        width: 100%;
        height: 60px;
        padding: 0 0 0 0;
    }
    .TableList {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: space-around;
    }
    .TableList dl {
        min-width: 50px;
    }
    .ListUI {
        display: block;
    }
    .hr_width {
        width: auto;
        height: 1px;
    }
    #Header_Tags {
        display: none;
    }
    #Bottom {
        width: 90%;
        padding: 2rem 5% 2rem 5%;
        background-color: #242424;
    }
}