html {
    background: var(--page-margin, white);
    overflow-x: hidden;
    font-size: large;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    color: var(--primary-text, white);
}

body {
    margin: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

#arbitstudioEditorContainer {
    min-height: 645px;
    overflow: auto;
    background: var(--editor-background, white);
    width: 100%;
    max-width: 90vw;
    padding: 0 1rem 1rem 1rem;
    border-radius: 15px;
}

.settings-area {
    justify-content: space-evenly;
    padding: 1rem;
}

h1 {
    font-size: 1.7rem;
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    -webkit-text-stroke-width: 0;
}

h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    -webkit-text-stroke-width: 0;
}

a {
    color: var(--link-accent, #98f);
}

.logoHeader {
    background-color: "#F5F3F0";
}

.logoHeader img {
    display: flex;
    justify-content: center;
    width: 12rem;
    height: auto;
    margin: 1rem 0rem;
}

#currentSongName {
    font-weight: bolder;
    font-style: italic;
    font-size: larger;
}

/* wide screen */
@media (min-width: 701px) {
    html {
        width: 100%;
    }

    body {
        width: 100%;
    }

    .column-container {
        width: 700px;
        display: flex;
        justify-content: space-between;
    }

    .instructions-column {
        width: 375px;
    }

    .twitter-column {
        width: 300px;
    }
}

/* narrow screen */
@media (max-width: 700px) {
    body {
        width: 100%;
    }

    .logoHeader img {
        margin-top: 2rem;
    }

    .column-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
