@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");

body {
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        margin: 0;
        background: #111;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
}

.branding-container {
        text-align: center;
        margin-top: 10vh;
        margin-bottom: 30px;
}

.aurora-title {
        font-size: 72px;
        font-weight: 700;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
        padding: 0;
        letter-spacing: -1px;
        text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.aurora-tagline {
        color: rgba(253, 253, 253, 0.7);
        font-size: 18px;
        font-weight: 300;
        margin-top: 10px;
        margin-bottom: 0;
        letter-spacing: 1px;
}

.flex-center {
        display: flex;
        justify-content: center;
}

.header-center {
        align-items: center;
        flex-direction: column;
        margin-top: 10%;
}

.left-margin {
        margin: 0px 16px;
}

#sj-frame {
        border: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #111;
}

#sj-error {
        color: #ff6666 !important;
        white-space: pre-wrap;
}

#sj-error-code {
        font-size: 12px;
        color: #fff;
        font-family: "Courier New", Courier, monospace;
}

.logo {
        height: 25vh;
}

.logo-wrapper .text {
        font-size: 75px;
        color: #fff;
}

.logo-wrapper h1 {
        color: white;
}

footer {
        margin: 0 16px;
        margin-top: auto;
        display: flex;
        flex-direction: column;
        line-height: 30px;
        margin-bottom: 20px;
}

footer > div {
        display: flex;
        justify-content: left;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
}

footer a,
footer span {
        margin: 0 15px;
        text-decoration: none;
        color: #fff;
        font-size: 15px;
}

footer a {
        cursor: pointer;
}

footer a:hover {
        text-decoration: underline;
}

.desc p {
        width: 560px;
        color: rgba(253, 253, 253, 0.514);
}

#sj-address {
        background: rgba(0, 0, 0, 0.3);
        font-family: inherit;
        padding: 0px 17px;
        height: 48px;
        border: 2px solid transparent;
        background-clip: padding-box;
        position: relative;
        color: var(--text-color);
        border-radius: 3px;
        outline: none;
        width: 350px;
        margin-top: 5px;
        border-radius: 50px;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

#sj-address::placeholder {
        color: rgba(253, 253, 253, 0.5);
}

#sj-address:focus {
        background: rgba(0, 0, 0, 0.5);
        border: 2px solid #667eea;
        border-radius: 6px;
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.4), 0 0 15px rgba(118, 75, 162, 0.3);
}

.credit {
        border-radius: 10px;
        padding: 10px;
        display: block;
        border: #fff 1px solid;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
}

.credit label {
        margin-left: auto;
        margin-right: 15px;
}

.credit a,
.credit label {
        color: white;
        text-decoration: underline;
        text-align: right;
}

.credit pre {
        display: none;
        width: 100%;
}

.credit label::after {
        content: "show license";
        cursor: pointer;
}

.credit input:checked + label::after {
        content: "hide license";
}

.credit input:checked ~ pre {
        display: block;
}

