body {
    padding: 0;
    margin: 0;
    background-color: white;
    font-family: "Noto sans tc";
}

.top_nav_bar {
    background-color: white;
    display: table;
    width: 100%;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.38);
}

nav div.nav_item {
    display: table-cell;
    color: black;
    padding: 5px;
    padding-bottom: 0;
}

.searchbt {
    position: relative;
    width: 30px;
    height: 30px;
    right: 260px;
    top: -2px;
    z-index: 1;
    cursor: pointer;
}

nav a {
    color: black;
    text-decoration: none;
}

.searchbar {
    height: 30px;
    width: 200px;
    border-radius: 30px;
    position: relative;
    top: -15px;
    outline: none;
    background-color: white;
    padding-left: 40px;
}

.text_link {
    font-size: 30px;
    color: black;
    cursor: pointer;
}

.text_link :hover {
    color: #AB46AA;
    text-decoration: underline;
    text-underline-position: 2px;
    transition: 0.3s;
}

* {
    padding: 0;
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
}

.clicked {
    color: #AB46AA !important;
    text-decoration: underline !important;
}

.gcse-search {
    width: 50%;
}

.outer-con {
    margin: 5px;
    border-left: 2px solid #AB46AA;
}

._headline {
    font-family: "Noto sans tc";
    color: #AB46AA;
    font-size: 50px;
}

.currently_on {
    background-color: Yellow;
}

@font-face {
    font-family: "Noto sans tc";
    src: url('stuff/NotoSansCJKtc-Regular.otf')
}

::-webkit-scrollbar {
    display: none;
}

.guide {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
}

.guide-con {
    position: relative;
    top: -100px;
    border-radius: 10px;
    background-color: white;
    margin: auto;
    padding: 10px;
    padding-bottom: 50px;
    border: 1px solid #888;
    width: 80%;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
}

.got-it {
    color: white;
    font-family: "Noto sans tc";
    border-radius: 5px;
    float: right;
    margin: auto;
    padding: 10px;
    border: 1px solid black;
    cursor: pointer;
    background-color: #AB46AA;
    outline: none;
}

.got-it:hover {
    background-color: rgb(248, 130, 246);
}

.mySlides {
    display: none;
    box-sizing: border-box;
}

.guide_img {
    vertical-align: middle;
    box-sizing: border-box;
    height: 500px;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    box-sizing: border-box
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    box-sizing: border-box
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    box-sizing: border-box
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    color: white;
}


/* Caption text */

.text {
    color: #AB46AA;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    box-sizing: border-box
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    box-sizing: border-box
}

.active,
.dot:hover {
    background-color: #717171;
    box-sizing: border-box
}


/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0.4
    }
    to {
        opacity: 1
    }
}