body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

div#background {
    background: rgb(1, 10, 19);
    width: 100%;
    height: 100%;
}

div#background {
    background: rgb(1, 10, 19);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-button-outer {
    width: 450px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
    background: linear-gradient(0deg, #6c5021 0, #ab8f57 100%);
    padding: 3px;
}

a.game-button {
    display: block;
    width: 100%;
    height: 100%;
    color: #ab8f57;
    text-decoration: none;
    background: rgb(1, 10, 19);
    font-size: 28px;
}

div#menu-wrapper {
    position: relative;
    z-index: 101;
}

div#logo {
    background-image: url(/images/menu/logo-menu.png);
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.moveable-image{
    animation: moveimage 20s;
}

@keyframes moveimage {
  0% {
    top: 100%
  }
  100% {
    top: -500px;
  }
}

.moveable-image {
    animation: moveimage 10s;
    position: absolute;
    background-size: contain;
    width: 150px;
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
}
