html, body {
    margin: 0;
    padding: 0;
    background-color: #2A2970;
}

.wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: 768px;
    margin: 0 auto;
    overflow: hidden;
}

.bg {
    position: relative;
    background-image: url('../public/bg1.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.bg-content {
    position: relative;
    background-image: url('../public/bg-content.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin-left: 33px;
    margin-right: 27px;
    margin-top: 30px;
    margin-bottom: 30px;
}