html {
    user-select: none;
}

.section {
    height: auto;
    width: 60%;
    margin-left: 20%;
    z-index: 1;
}

.colored {
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -o-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -ms-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}

.R, .Y, .O, .U {
    height: 60px;
}

.R {
    background: red;
}

.Y {
    background: yellow;
}

.O {
    background: #663333;
    opacity: 0.7;
}

.U{
    background: #996600;
    opacity: 0.7;
}

.row {
    width: 96%;
    margin-left: 2%;
}

.first div {
    height: 80px;
    width: 80px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -o-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -ms-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.second div, .third div, .fourth div, .fifth div {
    display: inline-flex;
    width: 100%;
    margin: 0;
    border-radius: 8px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -o-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -ms-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.first div:hover, .second div:hover, .third div:hover, .fourth div:hover, .fifth div:hover {
    -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.75);
    -o-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.75);
    -ms-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.75);
}

table, tr {
    width: 100%;
}

.clock {
    font-size: 40px;
    color: white;
    text-align: center;
    font-family: 'glyphicons', Arial, sans-serif;
}

@font-face {
    font-family: 'glyphicons';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
    url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),
    url('../fonts/glyphicons-halflings-regular.svg#glyphicons') format('svg');
    font-weight: normal;
    font-style: normal;
}

footer {
    margin-top: 80px;
}

#header {
    width: 20%;
    height: auto;
    margin-left: 40%
}