@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    background: linear-gradient( rgb(86, 104, 84) 0%, rgb(5, 26, 1) 100%);
    width: auto;
}

a {
    text-decoration: none;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo {
    font-size: 50px;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    color: #fff;
}

header nav ul li:not(.btn) a:hover {
    border-bottom: 5px solid #0f6d14;
}

header nav ul li.btn a {
    background: #0f6d14;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 500ms ease;
}

header nav ul li.btn a:hover {
    background: #0f6d14;
}

/* block games */

.trending {
    padding-top: 50px;
}

.trending h3 {
    font-weight: 600;
    font-size: 31px;
}

.trending .games {
    overflow: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px 0;
}

.trending .games .block-b {
    width: 680px;
}

/* footot*/

footer {
    margin-top: 60px;
    padding-top: 10px;
    background: #051a01;
    width: 100%;
    height: 350px;
}

footer .containe {
    width: 1400px;
    margin: 0 auto;
}

.icon {
    padding-bottom: 10px;
    position: relative;
}

.icons {
    width: 500px;
}

footer a {
    color: #fff;
    font-size: 20px;

}

footer .footer-icons {
    gap: 10px;
    display: flex;
    margin-top: 20px;
}

.footer-icons i {
    font-size: 25px;
    color: #0f6d14;
    border-radius: 5px;
    border: 1px solid #0f6d14;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.footer-icons i:hover {
    color: #ffffff;
    background: #0f6d14;
}

.footer-icons a {
    color: #fff;
}

footer .colons-one h3 {
    position: absolute;
    top: 0px;
    left: 500px;
    width: 300px;
    color: #ffffff;
}

footer .colons-two h3 {
    position: absolute;
    top: 0px;
    left: 900px;
    width: 300px;
    color: #ffffff;
}

footer .colons-three h3 {
    position: absolute;
    top: 0px;
    left: 1300px;
    width: 300px;
    color: #ffffff;
}

/*
@media (max-width: 440px) {
    * {
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        color: #fff;
        font-size: 16px;
        background: linear-gradient(45deg, rgb(86, 104, 84) 0%, rgb(5, 26, 1) 100%);
        width: auto;
        background-size: 400px;
    }

    .wrapper {
        background: linear-gradient(45deg, rgb(86, 104, 84) 0%, rgb(5, 26, 1) 100%);
        width: 100%;
    }

    .container {
        width: 430px;
        margin: 0 auto;
    }

    footer .colons-three h3 {
        left: 400px;
    }
}