@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: inherit;
}

::selection, ::-moz-selection, ::-webkit-selection {
    background-color: #50565C;
    color: white;
}

html {
    box-sizing: border-box;
    /*overflow-x: hidden;*/
    overflow-y: auto;
    scroll-behavior: smooth;
    height: 100%;
    font-size: 16px; /* 100% */
}

body {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;

    min-height: 100vh;
    font-family: 'Encode Sans', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    font-size: clamp(.9rem, calc(.9rem + 1vw), 1.25rem); /* 18px to 20px */
    line-height: 1.5;
    color: #50565C;
    
    background-color: white;
    background-image: url('../image/maintenance.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, blockquote, figure {
    margin: 0;
    padding: 0;
    border: none;
}

#test {
    position: absolute; top: 0; left: 0; bottom:0; right: 0;
    display: block;
    width: 100%;
    height: 100px;
    padding: 16px 10% 0 10%;
    background-color: white; 
}

#test #brand {
    display: block;
    width: 320px;   
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

ul, ol {
    list-style: none;
}

a, a:before, a:after, a .icon {
    transition: all .2s ease-out;
}

a,
a:link,
a:visited {
    color: #606060;
    text-decoration: none;
}

a:focus {
     /*outline: thin dotted #D10828;*/
}

a:active,
a:hover {
    outline: 0;
    color: #86647A;
}

a:before, a:after { pointer-events:none; }

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none;
}

.assistive {
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

a.skip-link {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    background-color: #333;
    transition: transform 0.3s ease;
}

a.skip-link:focus {
    transform: translateY(0);
}

#header {
    width: 100%;
    margin: 0 auto;
    padding: 32px 20px 20px 20px;
}

#header > .content { 
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
    
    padding: 24px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

#logo {
    display: block;
    width: 100%;
}

#main {
    width: 100%;
    padding: 0 20px;
}

.info-topic {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.info-topic > .content {
    display: flex;
    justify-content: center;
    
    padding: 24px;
    
    border-radius: 8px;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}



.links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.links li {
    display: flex;
    align-items: center;
}


.links a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    color: inherit;
}

.links a:hover {
    color: #000;
}

@media only screen and (min-width: 400px)
{
    #header > .content {
        padding: 32px;
    }

    .info-topic > .content {
        padding: 32px;
    }
    
    .links {
        gap: 0;
    }
    
    .links a {
        font-size: 1.1rem;
    }

    .links li:not(:last-child)::after {
        content: "•";
        margin: 0 1rem;
        color: #ccc;
    }
    

}