:root {
    --bg: rgb(240, 240, 240);
    --text: rgb(0, 0, 0);
    --border: black;
}

[data-theme='dark'] {
    --bg: rgb(36, 36, 36);
    --text: white;
}

#themeToggle {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}
#themeToggle:hover {
    cursor: pointer;
    transform: scale(1.1);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    transition: background 0s, color 0s;
}

#message {
    background: var(--bg);
    max-width: 360px;
    margin: 100px auto 16px;
    padding: 32px 24px 16px;
    border-radius: 3px;
}

#message h3 {
    color: #888;
    font-weight: normal;
    font-size: 16px;
    margin: 16px 0 12px;
}

#message h2 {
    color: #fd5203;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px;
}

#message h1 {
    font-size: 22px;
    font-weight: 300;
    color: var(--text);
    margin: 0 0 16px;
}

#message p {
    line-height: 140%;
    margin: 16px 0 24px;
    font-size: 14px;
    color: var(--text);
}

#message a {
    display: block;
    text-align: center;
    background: #039be5;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg);
    padding: 16px;
    border-radius: 4px;
}

#message, #message a {
    box-shadow: 0 1px 3px var(--bg), 0 1px 2px rgba(0,0,0,0.24);
}

#load { 
    color: var(--text);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 600px) {
    body, #message {
        margin-top: 0; background: var(--bg);
        box-shadow: none;
    }
    body {
        border-top: 16px solid #ffa100;
    }
}