body {
    margin: 0;
}

.background {
    background-image: url("images/background.png");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.link-holder {
    margin: 0 auto;
    position: relative;
    max-width: 480px;
    margin-top: 60px;
    font-size: 0px;
}

@media (max-width: 480px) {
    .link-holder {
        text-align: center;
    }
    #first-link {
        margin-right: 0 !important;
    }
    .link {
        margin-bottom: 30px;
    }
    .image-1 {
        left: 0;
    }
    .image-2 {
        left: 0;
    }
}

.link-title {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    font-size: 24px;
    margin-top: 15px;
    font-weight: 300;
}

.image-holder {
    position: relative;
    height: 165px;
    width: 190px;
    display: block;
    margin: 0 auto;
}

.image-holder:hover>.image-1 {
    opacity: 0;
}

.image-holder:hover>.image-2 {
    opacity: 1;
}

#first-link {
    margin-right: 40px;
}

.image-1,
.image-2 {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.image-1 {
    position: absolute;
    opacity: 1;
    transition: opacity 0.3s;
}

.image-2 {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
}

.link {
    width: 220px;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.player-counter {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    font-size: 1.5em;
    margin-top: 60px;
    font-weight: 300;
    box-sizing: border-box;
}

#amount {
    font-weight: 700;
}

.ripple {
    height: 28px;
    margin-bottom: -4px;
    box-sizing: border-box;
}

.page-center-outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.page-center-wrapper {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}

@media (max-width: 400px) {
    .logo {
        width: 100%;
    }
    .player-counter {
        padding: 0 15px;
    }
}

.logo {
    margin: 0 auto;
    position: relative;
    display: block;
    animation: breath 2s infinite;
}

@keyframes breath {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}