body{
    margin: 0;
    padding: 0;
    background:linear-gradient(to bottom, black, rgb(46, 46, 46)) fixed;
    color: white;
}

#site-header{
    background: linear-gradient(to bottom, rgb(71, 71, 71), black);
    border-bottom: 1px solid rgb(110, 109, 109);
}

.header-button-area{
    display: flex;
    padding: 30px 25%;
}

.button-header{
    width: 100%;
    text-align: center;
}

.anim{
    animation: kelip 1s infinite linear;
}

@keyframes kelip{
    0%{
        box-shadow: 0px 0px 10px 4px white;
    }
    100%{
        box-shadow: 0px 0px 10px 4px red;
    }
}

.word {
    color: #fff;
    padding: 20px 30px;
    border-radius: 3px;
    border: 1px solid rgb(238, 255, 0);
    font-family: Bebas Neue;
    background: #000;
}

.word h1{
    font-size:1.5em;
    color:rgb(238, 255, 0);
    text-align: center;
}
.word h2{
    font-size:1.3em;
    color:rgb(238, 255, 0);
    text-align: center;
}
.word h3{
    font-size:1.1em;
    color:rgb(238, 255, 0);
    text-align: center;
}
.word p{
    font-size:1em
}
.word a{
    color:rgb(238, 255, 0)
}

.btn-header{
    background: linear-gradient(to right, green, yellow);
    padding: 10px 150px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-weight: bolder;
    border-radius: 5px;
    transition: .3s;
}

.btn-header:hover{
    box-shadow: 0px 0px 10px 3px white;
}

.logo-area{
    text-align: center;
    background: black;
    padding: 13px;
}

#body-content{
    margin: 0px 400px;
}

.hot-games-area{
    margin-top: 8px;
    border-top: 2px solid rgb(110, 109, 109);
}

.hot-games-area .hot-games{
    font-size: 28px;
    font-weight: bolder;
    padding: 10px 0px;
    animation: blink 1s infinite linear;
}

@keyframes blink{
    to{
        color: red;
    }
}

.hot-games-area .hot-games-list{
    display: flex;
}

.games-card{
    width: 280px;
    margin: 0px 10px;
    background: linear-gradient(to bottom, yellow, greenyellow);
    cursor: pointer;
}

.marquee-area{
    background: linear-gradient(to right, black, rgb(61, 61, 61));
    border-radius: 10px;
    border: 1px solid rgb(110, 109, 109);
}

.flex-place{
    display: flex;
    margin-top: 10px;
    padding: 10px 0px;
    border-top: 2px solid rgb(110, 109, 109);
}

.row{
    display: flex;
    flex-direction: column;
    width: 75%;
}

.flex-place .flex-content{
    width: 100%;
}

ul{
    padding-left: 20px;
}
h4{
    margin:5px 0px;
    color: yellow;
}
p {
    margin: 0;
}

.btn-area{
    margin: 10px 0px;
    padding: 0px 5px;
    text-align: center;
}

.btn-area a{
    color: white;
    font-weight: bolder;
    text-decoration: none;
}

.btn-area a .btn{
    background: linear-gradient(to bottom, green, greenyellow);
    padding: 20px 0px;
    border-radius: 10px;
}

.faq-item{
    margin: 10px 0px;
}
@media screen and (max-width:1450px) {
    #body-content{
        margin: 0px 200px;
    }
    .header-button-area{
        display: flex;
        padding: 30px 15%;
    }
}

@media screen and (max-width:1050px) {
    #body-content{
        margin: 0px 150px;
    }
    .header-button-area{
        display: flex;
        padding: 30px 10%;
    }
    .btn-header{
        background: linear-gradient(to right, green, yellow);
        padding: 10px 100px;
        cursor: pointer;
        color: white;
        text-decoration: none;
        font-weight: bolder;
        border-radius: 5px;
        transition: .3s;
    }
}

@media screen and (max-width:750px) {
    #body-content{
        margin: 0px 10px;
    }
    .header-button-area{
        display: flex;
        padding: 30px 10px;
    }
    .btn-header{
        background: linear-gradient(to right, green, yellow);
        padding: 15px 60px;
        cursor: pointer;
        color: white;
        text-decoration: none;
        font-weight: bolder;
        border-radius: 5px;
        transition: .3s;
    }
    p{
        font-size: 12px;
    }
    .btn-area{
        margin: 20px 0px;
    }
}