*{
    box-sizing: border-box;
}

img{
    width: 100%;
}

@font-face {
    font-family: "Myriad";
    src: url("./fonts/MyriadPro-Light.otf");
    src: url("./fonts/MYRIADPRO-BOLD.OTF") format("opentype");
}

@font-face {
    font-family: "sans";
    src: url("./fonts/FF\ Shamel\ Family\ Sans\ One\ Book\ 2.ttf");
}

@font-face {
    font-family: "Shamel";
    src: url("./fonts/FFShamelFamily-SansOneBold.ttf");
}

body {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-image: url(./images/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 16px;
    font-family: Shamel;
}

h2{
    margin: 0;
}

.home-wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 2%;
}

.players{
    flex-basis: 48%;
    margin-left: -11%;
}


.players img{
    max-width: 100%;
}

.counter-wrapper{
    flex-basis: 50%;
    text-align: center;
}

.counter-wrapper .img-title{
    margin-bottom: 20px;
    width: 600px;
}

.counter{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    color: #fff;
}

.counter-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    overflow: hidden;
    width: 150px;
}

.counter-item .number{
    font-family: "Myriad";
    flex-grow: 2;
    flex-shrink: 0;
    background-color: rgba(112, 93, 36 , 0.8);
    padding: 20px;  
    font-size: 5rem;
}

.counter-item .word {
    padding: 5px;
    flex-grow: 0; 
    background-color: rgba(139, 115, 44, 0.75);
    font-size: 2.8em;
}

.heros{
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 4em;
    color: rgba(112, 93, 36, 0.8);
}

.logo{
    flex-basis: 12%;
}
 
.logo img{
    max-width: 100%;
}

@media (max-width: 961px) {
    .players {
        flex-basis: 35%;
        margin-left: -8%;
    }

    .logo {
        flex-basis: 11.5%;
    }
}


@media  (max-width: 1500px) {
    .players {
        flex-basis: 37%;
        margin-left: -8.5%;
    }

    .counter-wrapper .img-title {
        width: 535px;
    }

    .counter-item {
        width: 110px;
    }

    .counter-item .number {
        font-size: 4rem;
        padding: 15px 5px;
    }

    .counter-item .word {
        font-size: 2rem;
    }

    .heros {
        margin-top: 50px;
        font-size: 3em;
    }

    .logo {
        flex-basis: 13%;
    }
}


@media (min-width : 2001px){
    .players {
        flex-basis: 28%;
        margin-left: -6%;
    }

    .logo {
        flex-basis: 9%;
    }
}