@font-face {
    font-family: Anzu;
    src: url("../assets/APJapanesefontT.ttf") format("truetype");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Noto Sans JP", Arial, sans-serif;

    background-color: #f2f2f2;

    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;

    font-size: 24px;
    color: #111;

    white-space: nowrap;
}

header::before,
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/noise3.png");
    background-repeat: repeat;
    opacity: 0.1;
    pointer-events: none;
}
