* {
    box-sizing: border-box;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    /*margin: auto;*/
}

.bg-image {
    position: absolute;
    bottom: -88%;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: auto;
}

.text-container {
    width: 60%;
    height: 100%;
    background-color: white;
    background-image: url("/assets/light_shapes.png"), url("/assets/light_shapes.png");
    background-size: 600px 600px;
    background-position: bottom left -150px, top -150px right -300px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
}

.text-logo {
    position: absolute;
    left: 60px;
}

.splash-header {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 45px;
    margin: 0px;
}

.splash-header h1 {
    font-size: 6em;
    margin: 0;
}

.splash-header-sub-header {
    color: #5d54db;
    font-weight: bold;
    font-size: 1.4em;
}

.text-body {
    margin-top: 0;
    margin-bottom: 0;
}

.text-body p {
    font-size: 1.5em;
}

.demo-container {
    height: 100%;
    width: 40%;
    background: #5d54db;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/assets/DemoContainerBackground.png");
    background-position: top -20px right -30px;
    background-repeat: no-repeat;
    background-size: 400px 400px;
}

.demo-container img {
    height: 85%;
    width: auto;
}

body {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.terms-and-conditions-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
}

.address-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 0.6em;
    margin-top: 6px;
}

.footer img {
    width: 30px;
    height: 30px;
}

.header h3 {
    text-align: center;
    color: #DDF79B;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    line-height: 36px;
}

.copy {
    text-align: left;
    color: #ffffff;
    background-color: #242628;
    font-size: 12px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    padding: 25px 25px 25px 25px;
    width: 70%;
    margin: auto;
    border: #fbab40;
    line-height: 150%;
    margin-top: 20px;

}

.copy h1, h2 {
    text-align: left;
    color: #DDF79B;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    line-height: 36px;
}


.header {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    font-style: normal;
}

.header > h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 150%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.header > p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    color: #ffffff;
    flex-grow: 0;
    margin: 16px 0px;
}

a:link, a:visited,  a:hover, a:active
{
    color: #ffffff;
    text-decoration: none;
    font-style: normal;
    font-weight: 200;
    font-size: 18px;
}

.options {
    display: flex;
    flex-direction: row;
}

.options > a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0px 8px;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
}

.options > a:first-of-type {
    margin-right: 30px;
}

.join-waitlist-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.waitlist-button {
    background-color: #5d54db;
    border-radius: 50px;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
    width: fit-content;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
}

.terms-and-conditions-text{
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-size: 1.1em;
    margin-left: 4px;
    margin-right: 4px;
    margin-top: 3px;
}

#terms-link, #conditions-link {
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-size: 1.2em;
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 600px) {

    .container {
        flex-direction: column;
    }

    .text-container {
        width: 100%;
        height: fit-content;
        background-image: url("/assets/light_shapes.png");
        background-size: 600px 600px;
        background-position: bottom left -150px;
        background-repeat: no-repeat;
    }

    .demo-container {
        width: 100%;
        height: 100vh;
    }
    .splash-header h1 {
        font-size: 4em;
        margin: 0;
    }

    pre {
        font-size: 0.8rem;
        padding: 8px 12px;
        width: 100%;
    }

    body {
        width: 100vw;
    }

    .header img {
        margin-left: 0;
    }

    .installation-steps {
        width: 100%;
        box-sizing: border-box;
    }

    h1 {
        font-size: 1.6rem;
    }

    ol {
        padding-left: 20px;
    }

    li {
        margin-bottom: 5px;
    }
}

body {
    background-color: #000000;
    padding: 0px;
    margin: 0px;
}

#gradient {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

