body {
    background-color: #2e0708;
    margin: 0px;
}

iframe {
    border: 0;
    opacity: 0.90;
}

img {
    display: block;
}

.header {
    background-color: #644242;
    padding: 10px 0px;
}

.desktop,
.mobile {
    text-align: center;
    overflow: hidden;
}

/* defaults to desktop site */
.desktop {
    display: block;
    height: 1320px;
    position: relative;
}

.desktop>iframe {
    height: 1500px;
    width: 1152px;
}

.mobile {
    display: none;
    height: 2490px;
}

.mobile>iframe {
    height: 2628px;
    width: 360px;
}

.footer {
    display: flex;
    height: 70px;
    justify-content: center;
}

.footer>a {
    display: flex;
    align-items: center;
    font-family: "Ubuntu Mono", monospace;
    font-size: 12px;
    color: white;
    text-decoration: none;
}

.logo-web3 {
    height: auto;
    width: 197px;
    padding-left: 20px;
}

.logo-web3-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1275px;
    margin: auto;
}

.logo-curvegrid-container {
    align-items: center;
    display: flex;
}

.logo-curvegrid {
    height: auto;
    width: 80px;
    padding-left: 8px;
}

/* shows characters by default */
.character-1 {
    position: absolute;
    top: 848px;
    left: calc(50vw + 364px);
    z-index: -1;
    transform: scaleX(-1);
}

.character-2 {
    position: absolute;
    top: 316px;
    right: calc(50vw + 379px);
    z-index: -1;
}

.contact {
    color: white;
    text-decoration: none;
    font-family: "Ubuntu Mono", monospace;
    font-size: 19px;
    font-weight: bold;
    padding-right: 30px;
}

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

    .mobile,
    .header,
    .footer {
        width: 360px;
    }
}

/* switch dashboards on mobile vs desktop */
@media screen and (max-width: 700px) {
    .header {
        padding: 8px 0px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .logo-web3-container {
        max-width: 700px;
    }

    .logo-web3 {
        width: 186px;
    }

    .character-1,
    .character-2 {
        display: none;
    }

}

@media screen and (min-width: 700px) and (max-width: 1152px) {
    .header {
        width: 1182px;
    }

    .footer {
        width: 1152px;
    }

    .desktop {
        display: block;
        padding: 0px 16px;
        width: 1152px;
    }

    .character-1,
    .character-2 {
        display: none;
    }
}
