:root {
    --accent-color: #cf8c3c;
}

@font-face {
    font-family: 'Chelsea Market';
    src: url('ChelseaMarket-Regular.ttf');
}

html {
    color-scheme: light;
    background-color: #fdcb88;
    color: black;
    /*background-color: var(--color);*/
    font-family: "Chelsea Market", system-ui;
    font-weight: 400;
    font-style: normal;
}


.content-width {
    width: 800px;
}

@media screen and (max-width: 800px) {
    .content-width {
        width: 80%;
    }

    .not-on-mobile {
        display: none;
    }
}

iframe > html {
    background-color: blue;
}

.content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #cd8b3c;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 100px;
}

.content-column > * {
    padding: 10px;
    margin-top: 15px;
    width: 90%;
}

.divider {
    padding: 2px;
    background-color: #9f6a27;
    border: none;
    border-radius: 15px
}