body{
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    min-height: 100vh;
    text-decoration: none;
    background-color: #EDEDED;
    -webkit-font-smoothing: grayscale;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

strong{
    background-color: #030303;
    color: #FFFFFF;
    font-weight: 700;
}

footer{
    height: fit-content;
    margin: auto 0px 0px 0px;
}

.error-header{
    padding: 0 0 0 0;
    margin: 0px 0px 0px 0px;
    display: flex;
    width: 100%;
    /* height: 300px; */
    /* background: rgb(25,45,64); */
    /* background: linear-gradient(180deg, rgba(20,20,20,1) 0%, rgba(50,50,50,1) 100%); */
    flex-direction: column;
    align-items: center;
    /* border-bottom: rgb(30,30,30) 3px solid; */
    
    user-select: none;
}

    .error-header .oops {
        font-size: 50px;
        font-weight: 700;
        padding: 25px 0px 25px 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        text-align: center;
        color: #FFFFFF;
        background: #1A374D;
        border-bottom: #B1D0E0 5px solid;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
        justify-content: center;
    }

.error-header .text {
    font-size: 40px;
    font-weight: 900;
    padding: 30px 0px 10px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #406882;
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
}

.error-header .desc{
    font-size: 19px;
    padding: 0px 0px 30px 0px;
    font-weight: 700;
    color: #3a3a3a;
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
}

.error-header .text .icon{
    width: 32px;
    padding: 0px 15px 0px 15px;
    
}

.error-content{
    padding: 0px  20vw 25px 20vw;
    display: flex;
    flex-direction: column;

}

.error-question{
    padding: 25px 5px 0px 5px;
}

    .error-question .text {
        font-family: 'Roboto', 'Noto Sans TC', sans-serif;
        font-size: 20px;
        font-weight: 500;
        padding: 5px 5px 5px 25px;
        border-left: #406882 solid 5px;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        user-select: none;
    }

.error-question .desc{
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 30px 15px 30px;
}

.footer-box{
    border-top: #9A9A9A 1.5px solid;
    margin: 0px 30px 0px 30px;
    height: 120px;
}

.footer-box .content{
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
    font-weight: 300;
    margin: 15px;
    color: #5A5A5A;
    user-select: none;
} 

.mono-text{
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
}

.selectable{
    user-select: text;
}