* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;

}

body {
    display: flex;
    flex: 1 1 0;
    overflow: hidden;
    flex-direction: column;
    background-color: #0c8eef;
}

body::before {
    content: "";
    position: relative;
    max-height: 30px;
    width: 100%;
    background: black;
    flex: 1 1 0;
}

div.top {
    flex: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    max-height: 396px;
    min-height: 128px;
    padding-bottom: 48px;
    position: relative;
}

div.top .image-container {
    width: 100%;
    height: 100%;
    position: absolute !important;
}

div.top .image-element {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

div.top svg {
    display: block;
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

div.top .image-element svg #background {
    fill: #000;
}
div.top .image-element svg #charts {
    fill: #0c8eef;
}

div.top .logo-wrapper {
    max-width: 370px;
    max-height: 290px;
    width: 100%;
    height: 100%;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

div.top .logo-image {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

div.top .logo-image svg {
    overflow: visible;
}

div.top .logo-image svg #background {
    filter: blur(20px);
    fill: #000;
}

div.top .logo-image svg #prorealtime {
    fill: #fff;
}

div.top .logo-image svg #mobile,
div.top .logo-image svg #candlestick {
    fill: #0c8eef;
}

div.bottom {
    top: -80px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: 1;
    flex-shrink: 0;
    color: white;
    text-align: center;
    font-family: Inter, sans-serif;
}

div.bottom p.subtitle {
    font-size: 24px;
    line-height: 36px;
    margin: 0;
}

div.bottom .bold {
    font-weight: 600;
}

div.bottom a {
    color: white;
}

div.bottom .stores-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

div.bottom .bottom-text {
    padding: 0 30px;
    text-align: left;
    font-size: 14px;
    line-height: 21px;
}

div.bottom .bottom-text ul {
    padding-left: 20px;
}

div.bottom .bottom-text ul li {
    padding-bottom: 10px;
}