[data-theme="light"] {
    --background: rgb(230, 243, 253);
    --foreground: #000;
    --btn-shadow: rgba(10, 100, 169, 0.124);
    --btn-hilight: rgba(255, 255, 255, 1);
}

.dark {
    --background: rgb(30, 30, 41);
    --foreground: aliceblue;
    --btn-shadow: #000000;
    --btn-hilight: rgba(106, 122, 133, 0.229);

}


body {
    background-color: var(--background);
    font-family:  Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    color: var(--foreground);
}

.header {
    width: 100vw;
    position:fixed;
    display: flex;
    justify-content: center;
    align-self: center;
    top: 0;
}

main {
    width: 100vw;
}

#themeswitch {
    position: fixed;
    top: 1;
    right: 0;
}

button {
    text-align: center;
    text-decoration: none;
    font-family:  Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1rem;
    padding: 1rem;
    margin: 1rem;
    background-color: var(--background);
    cursor:pointer;
    border: none;
    color: var(--foreground);
    border-radius: 1.7rem;
    box-shadow: 10px 10px 10px -1px var(--btn-shadow), -10px -10px 10px -1px var(--btn-hilight);
}

button:active {
    box-shadow: inset 10px 10px 10px -1px var(--btn-shadow), inset -10px -10px 10px -1px var(--btn-hilight)
}

button.stimming {
    width: 17rem;
    font-size: 1.75rem;
    margin: 1.2rem;
    padding: 1.2rem;
}

.column {
    margin-bottom: -5rem;
    margin: 1rem, 0rem;
    display: flex;
    margin-top: 5rem;
    justify-content: center;
}

#slide {
    display: flex;
    width: 20rem;
    height: 2rem;
    padding: .5rem;
    margin-top: 2rem;
    color: var(--foreground);
    /* -webkit-appearance: none; */
    background: none;
    cursor: pointer;
    box-shadow: 10px 10px 10px -1px var(--btn-shadow), -10px -10px 10px -1px var(--btn-hilight);
    border-radius: 20rem;
    /* height: 2rem; */
    overflow: hidden;
}
