/*!******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./resources/scss/app.scss ***!
  \******************************************************************************************************************/
.mon, #kumiko canvas, #kumiko {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

:root {
  --background-color: #3c515e;
  --logo-color: #da1f26;
  --fade-duration: 500ms;
  --kumiko-grid-width: 1px;
  --kumiko-pattern-width: 1px;
  --kumiko-offset: 60px;
  --kumiko-pattern-color: #FFFFFF66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body, div, canvas, main, h1, h2, h6, nav, p, a, ul, li {
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  text-decoration: inherit;
  color: inherit;
  list-style-type: none;
}

[data-assistive] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#kumiko {
  background: var(--background-color);
}
#kumiko canvas {
  box-sizing: border-box;
  box-shadow: inset 0 0 0 5px white;
}

.mon {
  margin: auto;
  width: 120px;
  height: 120px;
  color: white;
}

.a {
  font: 16px/1.5 "Miriam Libre", sans-serif;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  color: var(--background-color);
  padding: 15px;
  box-sizing: border-box;
}
.a_h {
  text-align: center;
}
.a_h h1 {
  font-size: 22px;
  font-weight: bold;
}
.a_h h2 {
  font-size: 14px;
}
@media screen and (min-width: 480px) {
  .a_h h2 {
    font-size: 16px;
  }
}
.a_h .shy {
  display: none;
}
@media screen and (min-width: 400px) {
  .a_h .shy {
    display: inline;
  }
}
.a_l {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.a_p {
  display: none;
}
.a_f {
  display: none;
}
@media screen and (min-width: 800px) {
  .a {
    bottom: 0;
    width: auto;
    right: 40px;
    backdrop-filter: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 25px;
  }
  .a main {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .a_h {
    display: none;
  }
  .a_n {
    order: 1;
  }
  .a_p {
    order: 2;
  }
  .a_l {
    margin: 0 16px 0 0;
    flex-direction: column;
  }
  .a_p {
    display: block;
    max-width: 20em;
    font-size: 16px;
  }
  .a_p p:not(:last-child) {
    margin-bottom: 16px;
  }
  .a_p b {
    font-weight: bold;
  }
}

/*




.p {
    @extend %sticky;
    margin: auto 0;
    background-color: rgba(#1a1818, .7);
    color: white;
    backdrop-filter: blur(1px);
    height: 120px;
    display: flex;
    top: auto;

    &_h {
        order: 1;
        background-color: var(--logo-color);
        @extend %centered;
        width: 120px;
    }

    &_m {
        order: 3;
        display: flex;
        flex-grow: 1;
        justify-content: center;
        flex-direction: column;

        font-family: Merriweather, serif;
        padding-left: 40px;

        h1 {
            text-transform: uppercase;
            font-size: 18px;
            letter-spacing: 2px;
            margin-bottom: 8px
        }

        p {
            font-size: 14px;
            line-height: 1.8;
        }
    }

    &_f {
        order: 2;
        @extend %centered;
        flex-direction: column;

        a {
            background-color: rgba(black, .4);
            color: white;
            box-sizing: border-box;
            padding: 8px;
            position: relative;
            overflow: hidden;

            &, &:before {
                display: block;
                width: 40px;
                height: 40px;
            }

            &:before {
                background-color: var(--logo-color);
                content: '';
                @extend %sticky;
                transform: translateX(-40px);
                transition: transform .2s ease-in-out
            }

            &:hover {
                &:before {
                    transform: translateX(0);

                }
            }

            svg {
                position: relative;

            }
        }
    }

    &_n {
        order: 3;
        display: block;
        overflow: hidden;

        .name {
            display: block;
            font-size: 40px;
            height: 120px;
            min-width: 120px;
            padding: 40px;
            box-sizing: border-box;
            line-height: 1;
            background-color: var(--logo-color);
            background-color: rgba(black, .4);
        }
    }
}


.acc {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}


@keyframes fade {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {


        transform: translateX(50px);
        opacity: 0;
    }
}

@keyframes enter {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.name {
    &.fade-leaving {
        animation: fade var(--fade-duration) ease both;
    }

    &.fade-entering {
        animation: enter var(--fade-duration) ease both;
    }
}

*/
