




body {
    padding: 0;
    border: 0;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    display: block;
    background: var(--purple);
}

button {
    border: 0;
    margin: 0;
    font-size: 1em;
    background: var(--cyan);
    padding: 5px 10px;
}
button.rounded {
    max-width: 300px;
    margin: auto;
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: bold;
    background: none;
    border: solid 3px var(--cyan);
    color: var(--cyan);
}
button.rounded.filled {
    background: var(--cyan);
    color: var(--black);
    font-weight: normal;
}
button.rounded.small {
    max-width: auto;
    margin: 0;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: bold;
    background: var(--white);
    border: none;
    color: var(--purple);
}
button.purple {
    color: var(--purple);
}
button.rounded.purple {
    border-color: var(--purple);
}
button.mb {
    margin-bottom: 1em;
}
button.big {
    font-size: 1.5em;
}




header, footer {
    background: var(--purple);
    width: 100%;
    padding: 10px;
}
header {
    height: 90px;
}
header>div, footer>div {
    max-width: 1000px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.socials {
    display: flex;
    gap: 10px;
}
.socials, .socials a {
    height: 100%;
    margin: 0;
}
header img {
    height: 60px; /* Safari fix - header's 90px - 20px div padding - 10px a padding */
    width: auto;
    margin: 0;
}
header .socials img {
    height: 70px; /* Safari fix - header's 90px - 20px div padding */   
}
a {
    color: var(--black);
    min-width: 0;
}
h1 {
    color: var(--purple);
    font-size: 2.5em;
    margin-top: 0;
}
.mb-0 {
    margin-bottom: 0 !important;
}
select{
    cursor: pointer;
}


.bold {
    font-weight: bold;
}

.row {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
@media only screen and (min-width: 550px) {
    .row:not(.center) {
        justify-content: start;
    }
}



section {
    background: var(--white);
    width: 100%;
    padding: 80px 70px;
    text-align: center;
}
section input[type='text'] {
    border: 0;
    margin: 0;
    font-size: 1em;
    background: none;
}
section.unpadded {
    padding: 10px 70px;
}
section.padded {
    padding: 18vh 70px;
}
.bg-space {
    background-size: cover;
    background-position: center;
}
.bg-mountains {
    background-size: cover;
    background-position: center;
}
.bg-plains {
    background-size: cover;
    background-position: center;
}
.bg-horizon {
    background-size: cover;
    background-position: center;
}
.bg-redsun {
    background-size: cover;
    background-position: center;
}
.bg-bluemoon {
    background-size: cover;
    position: relative;
    z-index: 10;
    background-position: center;
}
.bg-bluemoon::before {
    content: '';
    background: rgba(86, 17, 100, 0.7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -5;
}
.bg-stars {
    background-size: cover;
    background-position: center;
}
section>div {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
}
h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1em;
}
.text-input {
    max-width: 500px;
    margin: 10px auto;
    display: flex;
    background: var(--light-grey);
    overflow: hidden;
    border-radius: 30px;
}
.text-input>input {
    padding: 20px 20px;
    width: calc(85vw - 140px);
    border: none;
    outline: none;
}
.text-input>input::placeholder {
    color: transparent;
}
.text-input>button {
    min-width: 60px;
    border-radius: 30px;
    font-weight: bold;
}

@media screen and (min-width: 500px) {
    .text-input>input {
        padding: 20px 40px;
        width: 20em;
    }
    .text-input>input::placeholder {
        color: var(--dark-grey);
    }
    h2 {
        font-size: 1.5em;
    }
}



.core-gif {
    margin-bottom: 40px;
    width: 512px;
    max-width: 85%;
    height: auto;
}
.core-gif.big {
    width: 800px;
}



.waitlist {
    gap: 30px;
}
.waitlist-socials {
    height: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.waitlist img, .waitlist a, .waitlist-socials img, .waitlist-socials a {
    height: 100%;
    width: auto;
    
}

@media screen and (min-width: 650px) {
    .waitlist {
        text-align: left;
        flex-direction: row;
        align-items: center;
    }
    .waitlist p {
        text-align: left;
    }
    .waitlist button {
        margin: 0;
    }
}



.privacy-policy-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5em;
    text-align: center;
    width: 100%;
    display: inline-block;
    margin: 10px 0;
}
.privacy-policy-link:hover {
    color: var(--light-grey);
    text-decoration: underline;
}



.square-video {
    width: 100%;
    max-width: 480px;
    margin: auto;
    margin-bottom: 4em;
}
.square-video > div {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    background: black;
}
.square-video > div > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
