html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    text-align: center;
    overflow: hidden;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    background-color: rgb(209, 209, 209);
    letter-spacing: 1.2;
    position: fixed;
}

img, a {
    border:none;
    text-decoration:none;
    outline: none;
}

#mainBody{
    display: block;
    width: 100%;
    height: 100%;
}

#landscapeDisplay{
    display: none;
}

#mainPageCanvas {
    width: 100%;
    height: 100%;

    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#preload{
    position: absolute;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center; 
    flex-flow: wrap;
}

.break {
    width: 100%;
}

#centerText{
    font-size: 16px;
}

@media screen and (orientation: landscape) {
    #mainBody{
        display: none;
    }

    #landscapeDisplay{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    #landscapeDisplay p{
        font-size: 50pt;
    }
}