*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    min-height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background{
    position: relative;
    width: 550px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 100%;
    height: 100%;
    max-width: 350px;
    object-fit: cover;
}
.text1{
    position: absolute;
    top: 7.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text1 img{
    width: 100%;
    height: 100%;
    max-width: 300px;
    object-fit: cover;
}

.money{
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.money img{
    width: 100%;
    height: 100%;
    max-width: 180px;
    object-fit: cover;
}
.buttons{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.buttons img{
    width: 100%;
    height: 100%;
    max-width: 200px;
    object-fit: cover;
    cursor: pointer;
    animation: zoomInOut 1.5s ease-in-out infinite;
}
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.buttons .pointer {
    position: absolute;
    right: -15px;
    bottom: -55px;
    width: 60px;
    height: auto;
    max-width: none;
    pointer-events: none;
    animation: pointAnim 0.5s infinite alternate;
}
@keyframes pointAnim {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-8px, -8px); }
}
.text3{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text3 img{
    width: 100%;
    height: 100%;
    max-width: 500px;
    object-fit: cover;
}
.steps{
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.steps img{
    width: 100%;
    height: 100%;
    max-width: 150px;
    object-fit: cover;
}
.text4{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text4 img{
    width: 100%;
    height: 100%;
    max-width: 500px;
    object-fit: cover;
}
.step1{
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.step1 img{
    width: 100%;
    height: 100%;
    max-width: 150px;
    object-fit: cover;
}
.text5{
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text5 img{
    width: 100%;
    height: 100%;
    max-width: 400px;
    object-fit: cover;
}
.banner{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.banner img{
    width: 100%;
    height: 100%;
    max-width: 500px;
    object-fit: cover;
}

@media (max-width:440px){
    .logo img{
        max-width: 200px;
    }
    .text1 img{
        max-width:320px;
    }
    .text2 img{
        max-width: 280px;
    }
    .money img{
        max-width: 150px;
    }
    .buttons img{
        max-width: 180px;
    }
    .text3 img{
        max-width: 350px;
    }
    .steps img{
        max-width: 120px;
    }
    .text4 img{
        max-width: 350px;
    }
    .step1 img{
        max-width: 120px;
    }
    .text5 img{
        max-width: 350px;
    }
    .partner img{
        max-width: 350px;
    }
    .banner img{
        max-width: 350px;
    }
    
}

@media (max-width:390px){
    .logo img{
        max-width: 200px;
    }
    .text1 img{
        max-width:280px;
    }
    .text2 img{
        max-width: 250px;
    }
    .money img{
        max-width: 120px;
    }
    .buttons img{
        max-width: 170px;
    }
    .text3 img{
        max-width: 350px;
    }
    .steps img{
        max-width: 110px;
    }
    .text4 img{
        max-width: 350px;
    }
    .step1 img{
        max-width: 110px;
    }
    .text5 img{
        max-width: 350px;
    }
    .partner img{
        max-width: 350px;
    }
    .banner img{
        max-width: 350px;
    }
}

@media (max-width: 360px){
    .logo img{
        max-width: 180px;
    }
    .text1 img{
        max-width:280px;
    }
    .text2 img{
        max-width: 280px;
    }
    .buttons img{
        max-width: 150px;
    }
    .text3 img{
        max-width: 280px;
    }
    .steps img{
        max-width: 100px;
    }
    .text4 img{
        max-width: 280px;
    }
    .step1 img{
        max-width: 100px;
    }
    .text5 img{
        max-width: 280px;
    }
    .partner img{
        max-width: 280px;
    }
    .banner img{
        max-width: 300px;
    }
}
    