@font-face {
    font-family: Funcom;
    src: url(./fonts/Funcom.otf);
}

@font-face {
    font-family: Roboto;
    src: url(./fonts/Roboto-Black.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Funcom, sans-serif; */
}

html {
    background-color: rgb(255, 158, 86);
    background-image: url("./img/background.png");
    background-repeat: repeat;
    /* animation: 60s linear infinite bg-scroll; */
}

body {
    position: relative;
    overflow: hidden;
}

#end-link {
    position: absolute;
    top: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    padding: 1em;
    color: white;
    text-align: center;
    background-color: #EA3356;
    transform: translateY(0px);
    z-index: 999;
}

#end-link p {
        font-family: Roboto, sans-serif;
        letter-spacing: 0.15ch;
}

canvas {
    background-color: transparent;
}

.unselectable {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@keyframes bg-scroll{
    from {
        background-position: 0px 0px;
    }

    to {
        background-position: 300px 300px;
    }
}