/* Need to reset some styles to get the layout right */
* {
    margin: 0;
}

.unsupported-browser {
    color: black;
    position: relative;
    /* First set the height to 100vh */
    height: 100vh;
    max-height: 100vh;
    /* But for browsers that support 100dvh, use that instead */
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
}

.unsupported-browser .wrap {
    max-width: 600px;
    height: 100%;
    margin: 0 auto;
}

.unsupported-browser .vcenter {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.unsupported-browser .vcenter .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 16px;
}

.unsupported-browser .vcenter .center .image {
    max-width: 270px;
}

.unsupported-browser .vcenter .center .header {
    margin-top: 64px;
    font-family: "Replica LL", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
}

.unsupported-browser .vcenter .center .info {
    margin-top: 24px;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.18px;
}

.unsupported-browser .top-left-image {
    background-image: url("/browser-detection/top_left.svg");
    position: absolute;
    top: 0;
    left: 0;
    width: 1384px;
    max-width: 100vw;
    height: 180px;
}

.unsupported-browser .top-left-image2 {
    background-image: url("/browser-detection/top_left_2.svg");
    position: absolute;
    top: 0;
    left: 0;
    width: 1282px;
    max-width: 100vw;
    height: 185px;
}

.unsupported-browser .bottom-right-image {
    background-image: url("/browser-detection/bottom_right.svg");
    position: absolute;
    bottom: 0;
    right: 0;
    width: 650px;
    max-width: 100vw;
    height: 497px;
}

@media (width < 500px), (height < 800px) {
    .unsupported-browser .bottom-right-image {
        bottom: -200px;
    }
    .unsupported-browser .top-left-image {
        top: -80px;
    }
    .unsupported-browser .top-left-image2 {
        top: -80px;
    }
}
