* {
    font-family: 'Cabin', sans-serif;
    margin: 0;
}
.tlo{
    margin: 0 auto;
}
.chess{
    width: 400px;
}
body, html{
    color: white;
    font-family: 'Cabin', sans-serif;
    margin: 0;
    background-image: url(/img/wall.png);
    width: 100%;
    min-height: 100%;

}
.volley{
    padding-left: 15px;
    width: 200px;
}
.chris{
    padding-right: 15px;
    width: 200px;
}
.gandd{
    width: 250px;
}
#logo2{
    background-size: 50%;    
}

#violetmenu{
    height: 40px;
    width: 100%;
    background-color: #3a094a;
    padding: 10px;
    position: static;
}
h1, h3{
    color: yellow;
}

/*ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
    background-color: black;
}
ul li{
    float: left;
    min-width: 200px;
    width: 200px;
    height: 40px;
    background-color: black;
    opacity: .8;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
}
ul li a{
    text-decoration: none;
    color: white;
    display: block;
}
ul li a:hover{
    background-color: darkblue;
    text-decoration: none;
    color: white;
    }    
ul li ul li{
    display: none;
}
ul li:hover ul li{
    display: block;
    width: 100%;
}*/
h1{
    padding: 20px;
}
p{
 font-size: 120%;  
 padding: 15px;
}
article{
    background-color: black;
    opacity: 0.9;
    border-radius: 10px;
    padding: 15px;
}
a{
    text-decoration: none;
    color: yellow;
}
.clock{
    width: 101px;
    height: 101px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    border-radius: 50%;
    transform: rotate(180deg) scale(1.5);
    float: right;
    margin: 20px;
    position: relative;
}
.clock .hours{
    border: 3px solid black;
    position: absolute;
    height: 30%;
    border-radius: 2px;
    left: 48px;
    top: 50px;
    
    animation-duration: 43200s;
}

.clock .minutes{
    border: 1px solid black;
    position: absolute;
    top: 50px;
    left: 50px;
    height: 45%;
    
    animation-duration: 3600s;
}

.clock .seconds{
    border: 1px solid red;
    position: absolute;
    top: 50px;
    left: 50px;
    height: 45%;
    
    animation-duration: 60s;
}
.hand{
    transform-origin: top center;
}
.animate{
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
th{
    font-size: 150%;
    text-align: center;
}
table{
    background-color: black;
}