@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;
}

.hero {
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero--info {
    width: 530px;
    padding-top: 70px;
}

.hero--info h2 {
    color: #ffffff;
    font-size: 20px;
    font-family: 600;
}

.hero--info h1 {
    font-size: 50px;
    font-family: 800;
}

.hero--info p {
    font-family: 500;
    line-height: 170%;
    margin: 30px 0;
}

.hero--info .btn {
    background: #0f6d14;
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    border: 0;
    transition: all 500ms ease;
    font-size: 17px;
}

.hero--info .btn:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.hero img {
    position: absolute;
    top: 20px;
    right: 0;
    width: 700px;
    border-radius: 15px;
}

/* block games */

.trending {
    padding-top: 50px;
}

.trending h3 {
    font-weight: 600;
    font-size: 31px;
}

.trending .games {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px 0;
}

.soc-icons-1 {
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.soc-icons-1 i {
    font-size: 160px;
    color: #15b31d;
    border-radius: 15px;
    border: 3px solid #15b31d;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.soc-icons-1 i:hover {
    color: #336e00;
    background: #00ff48;
}

.soc-icons-1 a {
    text-decoration: none;
}

.trending .games span {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.trending .games span img {
    position: relative;
    top: 5px;
    margin-right: 7px;
    width: 20px;
}

.trending .games span a {
    color: #fff;
}

/* 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;
}