/* ----- Reset ------- */

*, *::before, *::after{
    box-sizing: border-box; 
}

*{
    margin: 0; 
    padding: 0; 
}

ul[role='list'], ol[role='list']{
    list-style: none; 
}

html:focus-within{
    scroll-behavior: smooth; 
}

a:not([class]){
    text-decoration-skip-ink: auto; 
}

img, picture, svg, video, canvas{
    max-width: 100%;
    height: auto; 
    vertical-align: middle; 
    font-style: italic; 
    background-repeat: no-repeat; 
    background-size: cover;
}

input, button, textarea, select{
    font: inherit; 
}

@media (prefers-reduced-motion: reduce){
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

/* ----- Custom ------- */

body, html{
    height: 100%; 
    scroll-behavior: smooth; 
}

body{
    margin: 0;
    line-height: inherit;
    font-family: Raleway,xingothic-tc
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}

.relative
{
    position: relative;
}

.w-screen {
    width: 100vw;
}

.min-h-screen {
    min-height: 100vh;
}

.text-centered
{
    text-align: center;
}

.text-bold
{
    font-style: bold;
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.lg\:gap-x-2 {
    -moz-column-gap: .5rem;
    column-gap: .5rem
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.rounded-full {
    border-radius: 9999px;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    flex-wrap: nowrap;
}

.header
{
    width: 100%;
    margin: auto;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    line-height: 24px;
    padding-bottom: 8px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 8px;
}

.header .flex
{
    display: flex;
}

.header a {
    width: 33px;
    height: 33px;
    display: block;
}


.main-container .row p
{
    margin: 0;
    margin-top: 1em;
}

.message{
    font-family: Montserrat,sourcehansans-tc;
    font-size: 1.5em;
}