    @import url(https://fonts.googleapis.com/css?family=Abel);
body {
    font-family: 'Abel', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    font-size: 4em;
    padding-bottom: 5px;
    border-bottom: 5px solid black;
    margin: 0;
    margin-bottom: 100px;
    transition: 0.3s;
}

.container {
    width: 80%;
    margin: auto;
}

.container2 {
    width: 300px;
    margin: auto;
}

#box {
    width: 300px;
    height: 300px;
    margin: auto;
    border: 4px solid #888888;
    text-align: center;
    font-size: 2em;
    border-radius: 50%;
    box-shadow: 0px 7px 4px #757575;
    transition: 0.3s;
}

.top {
    margin-top: 40px;
}

.bot {
    margin-bottom: 40px;
}

#remote p {
    margin: 0;
}

#numbers p {
    font-size: 2.3em;
    margin: 0;
}

.arrow {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-top: 5px solid#aaa;
    border-right: 5px solid#aaa;
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 20px;
}

.arrow-up {
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.arrow-down {
    -ms-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg)
}

.right {
    float: right;
}

.buttons a {
    font-size: 1.4em;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

h1:hover,
.buttons a:hover,
#box:hover {
    color: #33b0ff;
    border-color: #33b0ff;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

a:hover {
    text-decoration: underline;
}

#box:hover {
    box-shadow: 0px 10px 6px #2fa3ec;
    transition: 0.3s;
}

.arrow:hover {
    color: #33ffd8;
    border-color: #33ffd8;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

.finish {
    transition: 0.3s;
    color: #d60000;
    border-color: #d60000;
}

#git {
    width: 100px;
    height: 100px;
    margin: 5% auto;
}