* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    overflow: hidden;
}

#bgimg:before {
    content: '';
    position: absolute;
    top: 160px;
    left: -50px;
    /* background-image: url('../urfuglgns.png');
    background-size: 85vw;*/
    width:100vw;
    height: 100vh;
    background-repeat: no-repeat;
    transform: rotate(25deg);
    transform: scaleX(-1);
    /* transform: skewX(10deg);
    transform: skewY(20deg); */
    overflow: hidden;
    z-index: -1;
    opacity: 0.15;
}

.box {
    box-shadow: 0px 0px 5px 3px #CCC;
    border: 1px solid #CBCBCB;
    margin-top: 2vh;
    margin-bottom: 2vh;
    background: rgba(255,255,255,0.8);
    border-radius: 5px 5px 5px 5px;
    height: 80vh;
}

#header {
    height: 13vh;
}

#logo {
    background-image: url('../kkbf.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 5.1vw;
    height: 10vh;
    position: relative;
    top: 3vh;
    left: 20px;
}

#typelogo {
    position: relative;
    top: -6vh;
    left: 7.1vw;
    font-family: 'Open Sans', sans-serif;
    font-size: 2em;
    word-wrap: break-word;
}

#dateandtime {
    position: relative;
    top: 3vh;
    float: right;
    font-size: 2em;
}

#timestamp {
    text-align: right;
}

#container {
    margin-bottom: 2vh;
}

#todays_activity {
    padding: 20px 5px 20px 20px;
}

#activities i {
    margin-top: 20px;
    display: block;
}

#content {
    padding: 10px;
    overflow: hidden;
}

#sports_news {
    padding: 20px;
    overflow: hidden;
}

#footer {
    height: 5vh;
    background-color: #1d1d1b;
}

#drlogo {
    background-image: url('../dr.png');
    background-repeat: no-repeat;
    background-size: 100px 30px;
    width: 100px;
    height: 25px;
    position: relative;
    top: 11px;
    left: 20px;
    float: left;
}

#newsticker {
    width: 110vw;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    top: 10px;
    color: #FFF;
}

#newsticker a {
    color: #FFF;
}

#content img {
    display: inline !important;
    object-fit: contain !important;
    max-width: 100% !important;
}

.clear {
    clear: both;
}

p {
    margin: auto !important;
}

#content p:first-of-type {
    height: 100%;
}

div ul li:not(:nth-last-child(20)){
    display: none !important;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    color: white;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}