@import url('https://fonts.cdnfonts.com/css/azonix');



/*
    Body and html defaults.
*/

a:hover{
    text-decoration: none;
}

body {
  margin: 0px;
  background: linear-gradient(#ffffff, #afafaf) no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
}

html {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*
    Error Pages
*/

mjr-content-middle{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 130px;
}

mjr-error-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#ee0000, #ee4444);
    border-radius: 30px;
    height: 100%;
    border: #000000 8px solid;
}

mjr-error-container-header{
    font-family: sans-serif;
    font-family: Azonix;
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

#mjr-form-input-ol{
    display: block;
    width: -webkit-fill-available;
    padding: 16px;
    border-radius: 16px;
}

#mjr-form-textarea-ml{
    display: block;
    width: -webkit-fill-available;
    height: 5em;
    border-radius: 8px;
    padding: 16px;
}

#mjr-form-submit-button{
    display: block;
    width: -webkit-fill-available;
    padding: 8px;
}

mjr-error-container-content{
    color: #ffffff;
    font-size: 20px;
}

#error-logo-1:hover{
    cursor: pointer;
    animation: spin .75s infinite linear;
}

@keyframes spin { from {transform: rotate(360deg);} to {transform: rotate(0deg);} }

#error-logo-2{
    transition: opacity .75s linear;
}

#error-logo-2:hover{
    cursor: pointer;
    opacity: 0;
}




/*
    Generic Styles
*/

code{
    padding: 2px;
    background: #00000088;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
}

h1{
    font-weight: bold;
    font-size: 2.1em;
}

p{
    font-size: 1.1em;
}

inverse{
    color: #000000;
}
mjr-header{
    display: block;
    text-align: center;
}

mjr-title{
    display: flex;
    align-items: center;
    background-image: url('/res/img/header-background.webp'), linear-gradient(#000000aa, #000000cc);
    background-size: 119vw auto;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    color: #ffffff;
    padding: 25px;
    font-family: sans-serif;
    font-family: Azonix;
    font-weight: bold;
    font-size: 45px;
    justify-content: center;
} mjr-title:hover{
    background-size: 120vw auto;
    background-image: url('/res/img/header-background.webp'), linear-gradient(#000000cc, #000000aa);
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 16px;
}

mjr-t-s{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-link{
    text-decoration: none;
}

mjr-subtitle{
    display: block;
    font-size: 16px;
    color: #ffffff;
    font-weight: normal;
    font-family: sans-serif;
}

mjr-nav{
    display: block;
    background: linear-gradient(#222222, #333333);
    color: #ffffff;
    padding: 0px;
    font-family: sans-serif;
} mjr-nav-button{
    display: inline-block;
    background: linear-gradient(#aaaaaa, #777777);
    color: #000000;
    font-weight: bold;
    padding: 8px 16px;
    margin: 0px 8px;
    border-radius: 5px;
    font-family: sans-serif;
} mjr-nav-button:hover{
    background: linear-gradient(#777777, #aaaaaa);
    text-decoration: underline;
}

mjr-content{
    display: inline-block;
    text-align: center;
	max-width: 75%;
	margin: 0 auto;
}

ul{
    list-style-position: inside;
}

























































































/*
    For Mobile And Or Tablet
*/
@media only screen and (max-width: 700px) {




    /*
        Generic Styles
    */

    h1{
        font-weight: bold;
        font-size: 1.5em;
    }

    p{
        font-size: 0.8em;
    }

    mjr-nav{
        padding: 0px;
        margin: -8px 0px;
    } mjr-nav a{
        text-decoration: none;
    } mjr-nav-button{
        display: block;
        padding: 8px 16px;
        margin: 8px 0px;
        font-size: 1em;
        border-radius: 0px;
    } mjr-nav a > mjr-nav-button:hover{
        background: linear-gradient(#777777, #aaaaaa);
    } mjr-nav a:hover{
        text-decoration: underline;
    }

    mjr-title{
        font-size: 33px;
    } mjr-title:hover{
        background-size: 120vw auto;
        background-image: url('/res/img/header-background.webp'), linear-gradient(#000000cc, #000000aa);
    }

    .logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 38px;
        height: 38px;
        margin-right: 14px;
    }

    mjr-t-s{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header-link{
        text-decoration: none;
    }

    mjr-subtitle{
        display: block;
        font-size: 10px;
        color: #ffffff;
        font-weight: normal;
        font-family: sans-serif;
    }
}






















































@media (prefers-color-scheme: dark) {
    body{
        background: linear-gradient(#707070, #000000) no-repeat;
        background-size: 100% 100%;
        background-attachment: fixed;
        font-family: sans-serif;
        display: flex;
        flex-direction: column;
        height: 100%;
        color: #ffffff;
    }

    code{
        padding: 2px;
        background: #ffffff88;
        color: #000000;
        font-weight: bold;
        border-radius: 5px;
    }

    a{
        color: #0088ff;
    }

    hr{
        color: #444444;
        background-color: #444444;
        border-color: #222222;
    }
}