@charset 'UTF-8';
@import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600');

html {
    font-family: 'Source Sans Pro', sans-serif;
    color: #777;
    font-weight: 600;
    font-size: 1.5em;
}

#centro {
    position: absolute;
    background-color: white;
    border: 3px solid #33b5e5;
    text-align: center;
    border-radius: 5px;
    width: 205px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#fondo {
    background-image: url(../images/crono.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: -1;
    height: 300px;
    width: 300px;
}

#botones {
    position: absolute;
    width: 165px;
    top: 67%;
    left: 50%;
    transform: translateX(-50%);
}

#historial {
    position: absolute;
    background-color: white;
    border: 3px solid #33b5e5;
    text-align: center;
    border-radius: 5px;
    width: 205px;
    left: 50%;
    top: 82%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

#historial p+p {
    border-top: 1px solid #33b5e5;
}