@font-face {
  font-family: "Pixellari";
  src: url("Pixellari.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
    filter: none;
    image-rendering: pixelated;

    font-family: "Pixellari", sans-serif;
    font-size: 20px;

    -webkit-font-smoothing: none;
}

.Background {
  background-image: url(bg-downscaled.png);
  background-repeat: repeat;
  animation: scroll-diag 20s linear infinite;
}

@keyframes scroll-diag {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 100%;
  }
}

@keyframes appear {
    from {
        filter: blur(3px);
        rotate: 20deg;
        color: black;
        opacity: 0;
    }
    to {
        rotate: 0deg;
        color: white;
        opacity: 1;
    }
}

.Panel {
    animation-name: appear;
    animation-duration: 2s;

    overflow: hidden;

    color: white;
    
    border: 30px solid transparent;
    border-image: url("panel.png") 5 fill stretch;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    width: fit-content;
    height: fit-content;

    padding-top: 30px;
    padding-bottom: 30px;

    padding-left: 50px;
    padding-right: 50px;

    margin: 20px;
}

Button {
    cursor: pointer;
    color: white;

    font-family: "Pixellari", sans-serif;
    font-size: 23px;

    border: 30px solid transparent;
    border-image: url("panel.png") 5 fill stretch;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    background-color:rgba(0, 0, 0, 0);

    width: fit-content;
    height: fit-content;
}

iframe {
    border-radius: 15px;
    border-style: none;
}

a {
    cursor: pointer;
}

a:hover {
    filter: blur(1px);
    opacity: 0.65;
}

.GameButton {
    position: relative;
    display: inline-block;
}