.button {
    border-radius: 4px;
    background: none;
    border: none;
    color: #000;
    text-align: center;
    font-family: 'Kaushan Script', cursive;
    font-size: 32px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    outline: none;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 68%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);

    transition: 0.5s;
}

.button span:after {
    content: ' \00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0.5;
}

#cent {
    font-family: 'Kaushan Script', cursive;
    color: #000;
    position: center;
    font-size: 120px;
}

div#cent {
    height: 7em;
    position: relative
}

div#cent p {
    margin: 0;

    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

body {
    background-color: #818181;
}