* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.home-container {
    position: relative;
    width: 100%;
    min-height: 1233px;
    overflow: hidden;
    background: #FF9BBF;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 666px;
    background: url("./bannerbg.webp") no-repeat center center;
    background-size: 100% 100%;
}
.avatar-container {
    position: absolute;
    top: 800px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.avatar-container .live-btn {
    width: 291px;
    height: 100%;
    margin: 31px auto 19px;
}
.avatar-container .peoples {
    width: calc(322 / 375 * 100vw);
    height: 100%;
}
.downloadButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 60px;
    gap: 10px;
    color: #fff;
    width: 221px;
    margin: 0 auto;
    height: 44px;
    background: linear-gradient(90deg, #F857A6 0%, #FF5858 100%);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;

}