@keyframes code {
    0%   {transform: rotate(0)}
    25%  {transform: rotate(-10deg)}
    50%  {transform: rotate(10deg)}
    100% {transform: rotate(0)}
}

html, body {
    margin: 0;
    padding: 0;
    background: #fff;
}

#text {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 18em;
    font-family: 'Rajdhani';
    color: #5b2626;
    animation-name: code;
    animation-duration: 1s;
}

p {
    display: block;
    margin: -40px 0 0 0;
    padding: 0;   
    font-family: 'Candara';
    font-size: 2em;
}

a {
    display: block;
    padding: 10px 12px;
    background: #fff;
    width: 140px;
    text-decoration: none;
    margin: 40px auto;
    border-radius: 20px;
    border: 3px solid #000;
    color: #000;
    font-family: 'Consolas';
    font-size: 1.1em;
    font-weight: bold;
    transition: 0.2s;
}

a:hover {
    border-color: #94b755;
    color: #94b755;
}