body{
    padding: 0px;
    margin: 0px;
    background-color: rgba(255, 190, 0, 0.5);
}
#main{
    width: 100%;
    height: 75vh;
    display: flex;
    margin: auto;
}
#header{
    z-index: 100;
    background-color: rgb(255,255,255);
    width: 95%;
    height: 10vh;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    position: sticky;
    top: 0px;
    border-bottom: yellow 3px solid;
    border-left: yellow 2px solid;
    border-right: yellow 2px solid;
}
#prof{
    display: flex;
    position: relative;
    color: black;
    background-color: burlywood;
    width: 9%;
    height: 50%;
    font-size: 40px;
    text-decoration: none;
    border-radius: 5px;
    top: 5px;
    left: 48vw;
}
#logo{
    width: 5%;
    height: 86%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20vw;
}
#search{
    font-family: Cambria;
    color: black;
    font-size: 20px;
    margin-top: auto;
    margin-bottom: auto;
    height: 80%;
    width: 10%;
}
#search_bu{
    margin-top: auto;
    margin-bottom: auto;
    width: 3%;
    height: 86%;
    background-color: yellow;
}
#search_bu:hover{
    background-color: orange;
    width: 4%;
    transition: all 500ms ease-in;
}
.predm_eh{
    gap: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: start;
    will-change: transform;
    animation: scrolling 10s linear infinite;
}
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.predm_img{
    width: 250px;
    height: 250px;
}

#predm{
    background-color: rgba(255, 150, 0, 0.3);
    padding: 10px;
    border: orange 40px solid;
    border-radius: 40px;
    height: max-content;
    margin-top: 8vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: start;
    max-width: 700px;
    overflow: hidden;
}
.predm_text{
    color: black;
    text-decoration: none;
}
footer{
    text-align: center;
    display: flex;
    height: 9vh;
}
#tg{
    text-align: center;
    font-size: 40px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    color: black;
    background-color: #E9510E;
    width: 16%;
    height: 100%;
}
#games{
    font-size: 50px;
    height: max-content;
}