* {
    padding:  0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

main {
    background-image: url('http://mc.waggongames.com/assets/images/frontend/website/background.jpg');
    /* background-image: 'assets/images/background.jpg'; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-width: 100%;
    min-height: 1080px;
    
    position: relative;
    overflow: hidden;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
}

.img-logo {
    width: 400px;
    height: 268px;
    
}

.wrapper-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.wrapper-btn a {
    display: block;
    width: 205px;
    height: auto;
}

img {
    width: 100%;
    height: 100%;
}

.btn-payment {
    width: 418px;
    height: 60px;
    
}

.wrapper-characters {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.img-character {
    width: 704px;
    height: 524px;
    
}

footer {
    background-color: #231F20;
    padding: 24px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
}

.wrapper-footer-left, .wrapper-footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.img-waggon {
    width: 32px;
    height: 32px;
}

a {
    color: #fff;
    text-decoration: none;
}

.copyright{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.privacy{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

@media (min-width : 360px) and (max-width : 600px) {
    main {
        min-height: 712px;
    }
    .img-logo {
        width: 242px;
        height: 162px;
    }
    
    .wrapper-btn {
        gap: 4px;
    }
    
    .wrapper-btn a {
        width: 164px;
    }

    .btn-payment {
        width: 336px;
        height: 48px;
    }

    .img-character {
        width: 431px;
        height: 320px;
    }

    footer {
        flex-direction: column;
    }

    .copyright, .privacy{
        font-size: 12px;
        line-height:18px;
    }
}