* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    width: 20%;
    transition: left 0.3s ease;
    z-index: 2;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: rgb(50, 50, 50);
}

header::-webkit-scrollbar {
    display: none;
}

.main-page {
    width: 100%;
    margin-left: 20%;
    display: inline-block;
    position: relative;
}

/* Sidebar */

.container-wave {
    background: url("../../assets/img/header_wave.svg");
    height: 40px;
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position-x: -2px;
    transform: translateY(-40px);
}

.socials {
    height: 100vh;
    padding-top: 1em;
    padding-bottom: 1em;
    min-height: 100%;
    z-index: 2;
    background-image: url("../../assets/img/sidebar_background.png");
}

.avatar {
    text-align: center;
    margin: 1em 2em;
    padding-bottom: 1em;
    margin-bottom: 0;
}

.avatar img {
    max-width: 60%;
    max-height: 60%;
    border-radius: 20%;
    height: 60%;
    width: 60%;
    background: #ff0000;
}

.info-block {
    padding: 1em;
}

.info-block h1 {
    font-size: 20pt;
    text-align: center;
    font-weight: 500;
    line-height: 20pt;
    padding-top: 0em;
    padding-bottom: 0.25em;
    color: white;
    font-weight: bold;
}

.info-title {
    font-size: 13pt;
    text-align: center;
    font-weight: 500;
    padding-bottom: 1em;
    padding-top: 0.5em;
    margin-bottom: 1em;
    color: #8f9aa3;
}

.info-social {
    padding: 0.75em 0;
    display: flex;
    justify-content: center;
}

.info-social-icon {
    color: white;
    font-size: 1.5em;
    width: 2em;
    height: 2em;
    text-align: center;
    border-radius: 26%;
    overflow: hidden;
    vertical-align: middle;
}

.info-social-icon a {
    color: inherit;
}

.info-social-icon button {
    color: inherit;
    font-size: 1em;
    text-decoration: none;
    transition: 0.1s ease;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.info-social-icon a:hover {
    color: rgb(200, 100, 50);
    text-decoration: none;
    transition: 0.1s ease;
}

.info-social-icon button:hover {
    color: rgb(200, 100, 50);
    text-decoration: none;
    transition: 0.1s ease;
}

.info-link {
    padding: 0.75em 0;
    display: flex;
}

.info-link>div {
    position: relative;
}

.info-link-name {
    margin-left: 1em;
    font-weight: 500;
    color: white;
}

.info-link-name a {
    color: inherit;
    text-decoration: none;
    transition: 0.1s ease;
    font-size: 13pt;
}

.info-link-name a.active {
    color: rgb(200, 100, 50);
    text-decoration: none;
    pointer-events: none;
    cursor: default;
    font-weight: bold;
}

.info-link-name a:hover {
    color: rgb(200, 100, 50);
}

.info-link-icon {
    color: white;
    font-size: 1.2em;
    width: 1.75em;
    height: 1.75em;
    text-align: center;
    border-radius: 26%;
    overflow: hidden;
    vertical-align: middle;
}

.info-link-icon i.active {
    color: rgb(200, 100, 50);
}

.tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.65em;
}

.info-social-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.sidebar-bottom {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    color: white;
    font-size: 0.8em;
    text-align: center;
}

.sidebar-bottom a {
    color: white;
}

.sidebar-bottom a:hover {
    color: rgb(200, 100, 50);
}

/* Main */

.slideshow-bg {
    position: fixed;
    top: 0;
    left: 20%;
    width: 80%;
    height: 60vh;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.container {
    width: 100%;
    height: 100%;
}

.container section {
    padding: 50px 50px;
}

.container-title {
    font-weight: bold;
    font-size: xx-large;
    position: relative;
    display: inline-block;
}

.container-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 80%;
    height: 2.5px;
    background-color: rgb(200, 100, 50);
    transform: translateX(-50%);
}

main {
    background-color: white;
    position: relative;
    display: block;
    width: 80%;
    left: 20%;
    top: 60vh;
}

.experience-container {
    padding: 20px;
}

.experience-cell {
    width: 50%;
    float: left;
}

.experience-column .experience-item h5 {
    font-size: 16px;
    background: rgba(255, 85, 0, .5);
    padding: 5px 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
}

.experience-column .experience-item h6 {
    font-size: 12px;
    padding: 5px 5px;
    display: block;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 20px;
}

.experience-column .experience-item li {
    margin-right: 10px;
}

.experience-column .experience-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #050d18;
}

/* Projects */

.project-examples {
    width: 100%;
    height: 200px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.project-example {
    width: 200px;
    height: calc(100% - 5px);
    flex: 0 0 auto;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    background-color: rgb(240, 240, 240);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    display: inline-block;
    position: relative;
    text-align: center;
    transform: scale(1);
    transition: 0.1s ease;
}

.project-example:hover {
    transform: translate(0px, -5px) scale(1);
}

.project-example img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.project-example #rblx.icon {
    background-image: url("../../assets/img/logos/rblx_icon.webp");
}

.project-example #mc.icon {
    background-image: url("../../assets/img/logos/mc_icon.webp");
}

.project-example #disc.icon {
    background-image: url("../../assets/img/logos/disc_icon.png");
}

.project-example #njs.icon {
    background-image: url("../../assets/img/logos/njs_icon.png");
}

.project-example #html.icon {
    background-image: url("../../assets/img/logos/html_icon.png");
}

.project-example #php.icon {
    background-image: url("../../assets/img/logos/php_icon.png");
}

.project-example #cassandra.icon {
    background-image: url("../../assets/img/logos/cassandra_icon.png");
}

.project-example .icon {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    right: 0;
    color: white;
    margin-right: 5px;
    margin-top: 5px;
    border-radius: 0 0 0 0;
    height: 24px;
    width: 24px;
}

.project-example #github.icon-L {
    background-image: url("../../assets/img/logos/github_icon.png");
}

.project-example .icon-L {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    left: 0;
    color: white;
    margin-left: 5px;
    margin-top: 5px;
    border-radius: 0 0 0 0;
    height: 24px;
    width: 24px;
}

.project-example p {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    width: calc(100% - 10px);
    height: 10%;
}

.project-example ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.project-example li {
    margin: 5px 0;
    padding-left: 5px;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.project-example button {
    margin-top: 10px;
    top: 75%;
    width: 60%;
    height: 15%;
    border-radius: 100px;
    background-color: orange;
    border: none;
    cursor: pointer;
    box-shadow: 0px 5px rgba(0, 0, 0, 0.1);
    font-size: 14pt;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    transform: scale(1);
    transition: 0.1s ease;
}

.project-example button.disabled {
    margin-top: 10px;
    top: 75%;
    width: 60%;
    height: 15%;
    border-radius: 100px;
    background-color: grey;
    border: none;
    cursor: default;
    box-shadow: 0px 5px rgba(0, 0, 0, 0.1);
    font-size: 14pt;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.project-example button.disabled:hover {
    transform: scale(1.05);
    background: dimgray;
}

.project-example button:hover {
    transform: scale(1.05);
    background: #f77325;
}

.container-footer {
    width: 100%;
    height: 100px;
    background-color: rgb(50, 50, 50);
}

.container-footer-wave {
    background: url("../../assets/img/footer_wave.svg");
    height: 40px;
    background-size: 100vw;
    background-repeat: no-repeat;
    background-position-x: -2px;
    fill: rgb(50, 50, 50);
}

.project-popup {
    top: 50%;
    left: 50%;
    position: fixed;
    background: white;
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.20);
    transition: 0.3s ease;
    max-height: 100%;
    overflow-y: scroll;
    display: block;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    opacity: 0;
    z-index: 3;
}

.project-popup p,
.project-popup li {
    font-weight: 400;
}

.project-popup li {
    padding-bottom: 5px;
    padding-left: 20px;
}

.project-popup li i {
    font-weight: 300;
    font-style: italic;
    font-size: 10pt;
}

.project-popup li p {
    margin-top: 5px;
    padding-left: 20px;
    font-weight: 400;
    font-style: italic;
    font-size: 10pt;
    border-left: 3px solid lightgray;
}

.project-popup::-webkit-scrollbar {
    width: 8px;
}

.project-popup.toggle-show {
    opacity: 1;
    display: block;
}

.project-popup-topbar {
    text-align: center;
}

.project-popup-topbar-container h3 {
    margin: 20px 0 0 0;
    display: block;
    font-size: 24pt;
    font-weight: 600;
    text-align: center;
}

.project-popup-topbar-container h5 {
    margin: 0;
    text-align: center;
    font-size: 15pt;
    font-weight: 400;
    margin-bottom: 10px;
}

.project-popup-topbar-closer {
    float: right;
}

.project-popup-topbar-closer button {
    outline: 0;
    border: 0;
    background: white;
    font-size: 21pt;
    color: #d8dce2;
    padding: 4px 6px;
    border-radius: 100%;
    cursor: pointer;
    display: inline-block;
    margin: 5px;
}

.project-popup-topbar-closer button:hover {
    background: #f1f1f1;
    color: #c3c3c3;
}

.fa-times:before {
    content: "\f00d";
}

.project-popup-topbar-closer button i {
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    bottom: -2px;
}

.project-popup-mid {
    margin-left: 80px;
    margin-right: 80px;
    margin-bottom: 10px;
    overflow: hidden;
    border-top: 2px solid #f5f5f5;
}

.project-popup-mid a {
    color: rgb(200, 100, 50);
    text-decoration: none;
}

.project-popup-mid a:hover {
    color: rgb(120, 60, 30);
    text-decoration: none;
    transition: 0.1s ease;
}

.project-popup-mid-desc {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 12pt;
    font-weight: 300;
    color: #616980;
    border-bottom: 2px solid #f5f5f5;
}

.project-popup-mid-desc h2 {
    padding-top: 0;
    margin-top: 0;
}

.project-popup-mid-desc::after {
    content: "";
    display: table;
    clear: both;
}

.project-popup-mid-desc img.popup-img:not(.image-wrapper img) {
    max-width: 40%;
    max-height: 40%;
    height: auto;
    width: auto;
    margin: 0 15px 10px 0;
    border-radius: 8px;
}

.project-popup-mid-desc img.popup-img.right:not(.image-wrapper img) {
    float: right;
    margin: 0 0 10px 15px;
}

.project-popup-mid-desc img.popup-img.left:not(.image-wrapper img) {
    float: left;
    margin: 0 15px 10px 0;
}

.project-popup-mid-desc .image-wrapper {
    display: inline-block;
    position: relative;
    margin: 0 15px 10px 0;
    max-width: 40%;
    text-align: center;
}

.project-popup-mid-desc .image-wrapper.right.xl,
.project-popup-mid-desc .image-wrapper.left.xl {
    width: 100%;
    max-width: 50%;
}

.project-popup-mid-desc .image-wrapper.right {
    float: right;
    margin: 0 0 10px 15px;
}

.project-popup-mid-desc .image-wrapper.left {
    float: left;
    margin: 0 15px 10px 0;
}

.project-popup-mid-desc .image-wrapper.right.bottom,
.project-popup-mid-desc .image-wrapper.left.bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 15px 10px 0;
}

.project-popup-mid-desc .image-wrapper img.popup-img,
.project-popup-mid-desc .image-wrapper iframe {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.project-popup-mid-desc .image-wrapper iframe {
    aspect-ratio: 16 / 9;
}

.project-popup-mid-desc .image-wrapper .image-caption {
    font-size: 10pt;
    font-weight: 300;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

.project-popup .access {
    margin: auto auto 15px auto;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #e4e4e4;
    border-radius: 10px;
    width: 40%;
    height: 96px;
}

.project-popup .access .text-content {
    left: 40%;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.project-popup .access .text-content h3 {
    font-weight: bold;
    font-size: 13pt;
    width: 100%;
    height: 20px;
    margin: 0;
}

.project-popup .access .text-content a {
    margin: 5px 0 0 0;
    width: 100%;
    color: rgb(200, 100, 50);
    text-decoration: none;
}

.project-popup .access .text-content a:hover {
    color: rgb(120, 60, 30);
    text-decoration: none;
    transition: 0.1s ease;
}

.project-popup .access img {
    height: 86px;
    width: 86px;
    padding: 5px 0 5px 5px;
    border-radius: 10px;
}

.mc-menu {
    position: relative;
}

.mc-menu > img {
    display: block;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.mc-menu .title {
    position: absolute;
    top: 2.4%;
    left: 5%;
    color: #2B2D2F;
    /* height: 9.5%; */
    text-align: left;
    max-width: 89%;
    width: 100%;
} 

.mc-menu .title p {
    font-family: Minecraft, Montserrat, sans-serif;
    letter-spacing: .2px;
    text-overflow: ellipsis;
    font-size: 90%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    margin: 0;
}

.mc-menu .grid {
    position: absolute;
    display: grid;
}

.mc-menu .grid.s54 {
    top: 12.35%;
    left: 4.4%;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(6, 1fr);
    width: 91%;
    height: 75%;
    column-gap: 1.1%;
    row-gap: 1.4%;
}

.mc-menu .grid.s45 {
    top: 13.7%;
    left: 4.4%;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(5, 1fr);
    width: 91%;
    height: 72%;
    column-gap: 1.1%;
    row-gap: 1.4%;
}

.mc-menu .grid.s36 {
    top: 16.5%;
    left: 4.4%;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 91%;
    height: 67%;
    column-gap: 1.1%;
    row-gap: 1.4%;
}

.mc-menu .grid.s27 {
    top: 20%;
    left: 4.4%;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 91%;
    height: 59%;
    column-gap: 1.1%;
    row-gap: 1.4%;
}

.mc-menu .grid.s18 {
    top: 25.5%;
    left: 4.3%;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 91%;
    height: 48%;
    column-gap: 1.1%;
    row-gap: 1.4%;
}

.mc-menu .grid.s9 {
    top: 34.5%;
    left: 4.4%;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(1, 1fr);
    width: 91%;
    height: 30%;
    column-gap: 1.1%;
    row-gap: 1.4%;
}

.mc-menu .cell {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.mc-menu .cell:hover {
    background-color: rgba(255, 255, 255, 0.5);
    height: auto;
    width: 100%;
    content: "";
    background-position: center center;
    z-index: 3;
}

.mc-menu .cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.mc-menu .cell .count {
    position: absolute;
    bottom: 2px;
    right: 0;
    text-align: right;
    font-family: Minecraft, sans-serif;
    font-size: .8em;
    color: white;
    text-shadow: 2px 2px 0 #000;
    pointer-events: none;
}

#mc-menu-tooltip {
    position: absolute;
    pointer-events: none;
    background: rgba(0,0,0,0.8);
    border-radius: 4px;
    background-color: rgba(16, 0, 16, 0.94);
    margin: 0.125em 0.25em;
    padding: 0.375em;
    z-index: 9999;
    max-width: 50%;
    white-space: break-spaces;
}

#mc-menu-tooltip span {
    white-space: pre-line;
    text-wrap: auto;
    color: #fff;
    text-shadow: 0.125em 0.125em #3F3F3F;
    font-family: minecraft, unifontm, unifont, Rubik, serif, sans-serif;
    font-size: 16px;
    line-height: 1.25em;
}

#mc-menu-tooltip::before {
    content: "";
    position: absolute;
    top: 0.125em;
    right: -0.125em;
    bottom: 0.125em;
    left: -0.125em;
    /* border: 0.25em solid #100010;
    border-style: none solid; */
    border-color: rgba(16, 0, 16, 0.94);
    pointer-events: none;
}

#mc-menu-tooltip::after {
    content: "";
    position: absolute;
    top: 0.125em;
    right: 0;
    bottom: 0.125em;
    left: 0;
    border: 0.125em solid #2D0A63;
    border-image: -webkit-linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
    border-image: linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
    pointer-events: none;
}


#mobileMenu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 9;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
  
#mobileMenu.open {
    transform: scale(1.05);
    background-color: #f77325;
}

#mobileMenu:hover {
    transform: scale(1.05);
    background-color: #f77325;
}

#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 9;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
  
#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    transform: scale(1.05);
    background-color: #f77325;
}

body.disclaimer-active {
    overflow: hidden;
}

#disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#disclaimer-box {
    background-color: #fff;
    padding: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#disclaimer-box h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

/* #disclaimer-box p {
    
} */

#accept-button {
    padding: 10px 20px;
    background-color: orange;
    cursor: pointer;
    box-shadow: 0px 5px rgba(0, 0, 0, 0.1);
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
}

#accept-button:hover {
    transform: scale(1.05);
    background: #f77325;
}

#img-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#img-lightbox.show {
    opacity: 1;
    visibility: visible;
}

#img-lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#img-lightbox .caption {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-size: 12pt;
    max-width: 90%;
    font-style: italic;
}


@media (max-height: 1150px) {
    .sidebar-bottom {
        visibility: hidden;
    }
}

@media (max-width: 1150px) {
    main {
        left: 0px;
        width: 100%;
    }

    header {
        left: -250px;
        width: 250px;
    }

    header.mobileOpen {
        left: 0;
    }

    header .socials {
        box-shadow: none;
    }

    .slideshow-bg {
        left: 0;
        width: 100%;
    }

    #mobileMenu {
        opacity: 1;
        visibility: visible;
    }

    .sidebar-bottom p {
        display: none;
    }

    .container section {
        padding: 50px 10px 50px 10px;
    }

    .container-wave {
        transform: translateY(-30px);
    }

    .container-footer-wave {
        transform: translateY(15px);
    }

    .experience-cell {
        float: 0;
        width: 100%;
    }

    .project-popup-mid {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 650px) {
    .project-popup-mid-desc .image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@font-face {
	font-family: "Minecraft";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: url("/assets/fonts/Minecraft.woff2") format("woff2"),
		url("/assets/fonts/Minecraft.woff") format("woff");
	unicode-range: U+0020-007E,U+00A0-00A1,U+00A3,U+00AA-00AC,U+00AE,U+00B0-00B2,U+00B7,U+00BA-00BD,U+00BF-00C2,U+00C4-00CB,U+00CD,U+00D1,U+00D3-00D8,U+00DA,U+00DC,U+00DF-00EF,U+00F1-00FC,U+00FF,U+011F,U+0130-0131,U+0152-0153,U+015E-015F,U+0174-0175,U+017E,U+0192,U+0207,U+0393,U+0398,U+03A3,U+03A6,U+03A9,U+03B1-03B2,U+03B4,U+03BC,U+03C0,U+03C3-03C4,U+207F,U+2205,U+2208,U+2219-221A,U+221E,U+2229,U+2248,U+2261,U+2264-2265,U+2320-2321,U+2500,U+2502,U+250C,U+2510,U+2514,U+2518,U+251C,U+2524,U+252C,U+2534,U+253C,U+2550-256C,U+2580,U+2584,U+2588,U+258C,U+2590-2593,U+25A0;
}