@font-face {
  font-family: SigmarOne;
  src: url(SigmarOne-Regular.ttf);
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@keyframes background {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 256px 256px;
    }
}

body {
    background: white;
}

.container {
    padding:8px;
    background: url(pixel.png) #e477ad;
    background-size: 256px;
    image-rendering: pixelated;
    background-attachment: fixed;
    width:fit-content;
    height:fit-content;
    animation: 2s linear infinite background;
    animation-play-state: running;
    background-blend-mode: soft-light;
    border: 5px solid #000000;
}

#strip img {
    width: 800px;
    image-rendering: auto;
}
#strip {
    width: fit-content;
    height: fit-content;
}

.buttons {
    background: black;
    border: .00001px solid black;
    display: flex;
    justify-content: center;
    width:400px;
    height:fit-content;
    margin-bottom:4px;
}
.button {
    width:100%;
}

.button a {
    background:#ffc0d5;
    color: #ffffff;
    text-align: center;
    font-family: SigmarOne;
    text-shadow: 1px 1px black;
    width: calc(100% - 18px);
    font-size: x-large;
    display:block;
    margin: 4px;
    text-decoration:none;
    transition: background 0.2s;
    border: 5px outset;
}

.button a:hover {
    background: #fcdae6;
    font-weight:bold;
    transition: background 0.2s;
}