.onboarding-screen {
    width: 390px;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;
    height: 844px;
    max-height: 100vh;
    overflow: hidden;
    text-align: center;
    font-size: 48px;
    color: #101010;
    font-family: 'Montserrat', sans-serif;
}

.app-title {
    position: absolute;
    top: 48.8%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    color: #101010;
    font-size: 40px;
    font-family: rubik;

}

.app-subtitle {
    position: absolute;
    top: 56.9%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    white-space: nowrap;
    font-family: rubik;     
    color: #101010;
    font-size: 16px;
}

.status-bar-icon {
    position: absolute;
    top: 7.2%;
    left: 68.5%;
    width: 12.8px;
    height: 14.8px;
}

.top-background-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 37.9%;
}

.top-background {
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 0px 0px 32px 32px;
    background-color: #98d4d5;
    width: 100%;
    height: 100%;
}

.app-logo {
    position: absolute;
    top: 31.2%;
    left: 50%;
    transform: translateX(-50%);
    width: 138px;
    height: 138px;
    object-fit: cover;
}

.get-started-button {
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.button-inner {
    border-radius: 12px;
    background-color: #98d4d5;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    box-sizing: border-box;
}

.button-text {
    position: relative;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 480px) {
    .onboarding-screen {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }
}

/* iPhone 11, XR, 11 Pro Max support */
@media (max-width: 414px) and (max-height: 896px) {
    .onboarding-screen {
        width: 414px;
        max-width: 100vw;
        height: 896px;
        height: 100dvh;
    }

    .get-started-button {
        top: 80%;
    }
}

@media (max-height: 700px) {
    .app-title {
        font-size: 40px;
    }

    .get-started-button {
        top: 78%;
    }
}
