@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap');

.app{
    width: 1280px;
    height: 720px;
    display: flex;
    border-style: none;
}

div {
    color: White;
    display: position;
    position: absolute;
    font-family: 'Baloo Bhai 2', cursive;
}

#Game{
    top: 0px;
    left: 0px;
    width: 550px;
    padding-left: 5px;
    font-size: 20px;
    text-align: left;
    background-color: #0e0e0a;
}

#Score{
    top: 0px;
    left: 570px;
    width: 300px;
    padding-left: 0px;
    padding-right: 5px;
    font-size: 20px;
    text-align: right;
    background-color: #0e0e0a;
}

#BottomBar{
    top:  652px;
    left: 215px;
    width: 875px;
    height: 65px;
    background-color: #0e0e0a;
}

#Scroller{
    width: 200%;
    top: 30px;
    padding: 2px;
    height: 30px;
    font-size: 20px;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
}

#RandGameImg{
    top: 490px;
    left: 180px;
    width: 170px;
    height: 100px;
    border-style: none;
    background-color: #0e0e0a;
    padding-left: 5px;
    visibility: hidden;
}

#RandGameL1{
    top: 590px;
    left: 180px;
    width: 945px;
    height: 40px;
    font-size: 22px;
    border-style: none;
    background-color: #0e0e0a;
    padding-left: 5px;
    visibility: hidden;
}

#RandGameL2{
    top: 620px;
    left: 180px;
    width: 945px;
    height: 40px;
    font-size: 18px;
    border-style: none;
    font-style: italic;
    background-color: #0e0e0a;
    padding-left: 5px;
    visibility: hidden;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}



