#container-apk {
    background: #fedb00;
    padding: 10px;
}
#container-apk-a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.7rem;
    color: #000;
}
#container-apk-b {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
}
#container-apk-button {
    float: right;
    text-transform: uppercase;
    font-weight: bold;
}
#apk-button {
    text-decoration: none;
    display: inline-block;
    padding: 0.6em 1.5em;
    border-radius: 2rem;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 700;
    color: #FFFFFF;
    background: #5d5d5d;
    text-align: center;
    transition: all 0.2s;
    animation: beat 1s infinite;
}

@keyframes beat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}