@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: #7dc4d4;
    font-size: 0;
}

#logo a img {
    max-width:700px;
    font-family:sans-serif;
    text-decoration:none;
    color:orange;
    font-weight:bold;
    background:#ffffff;
    padding: 10px 5px;
    user-select: none;
    rotate: 0.001deg;
    transition: padding 0.4s;
    border:2px solid black;
    border-radius:5px;
}

#logo a img:hover {
    padding: 14px 40px;
}

.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 #421536;
}

#strip img {
    width: 800px;
    image-rendering: auto;
}
#strip {
    width: fit-content;
    height: fit-content;
}

.buttons {
    background: black;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height:60px;
    margin: 4px 0px 4px 0px;
    user-select: none;
}
.button{
    width:100%;
    border: 4px solid black;
}

.button a {
    background:#ffc0d5;
    color: #ffffff;
    font-family: SigmarOne;
    text-shadow: 1px 1px black;
    flex-grow: 1;
    font-size: x-large;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    text-decoration:none;
    transition: background 0.2s ease;
    border: 5px outset;
    cursor: pointer;
    box-sizing: border-box;
    height: 100%;
}

.button a:hover{
    background: #fcdae6;
    font-weight:bold;
}