body {
    background: linear-gradient(135deg, #fef3e2 0%, #f4a261 100%);
    min-height: 100vh;
}

h1,h2{
    font-family: 'Indie Flower',serif;
    text-align: center;
    color: #9c3d1a;
    font-size: 325%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2{
    font-size: 200%;
}

#login,#register {
    background: #c23b1e;
    border: solid 0px #9c3d1a;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    color: #ffffff;
    font-size: 175%;
    font-family: 'Indie Flower',serif;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(156,61,26,0.25);
}

#login:hover,#register:hover {
    background: #9c3d1a;
}

#login:active,#register:active {
    background: #e8894a;
}

#login:focus,#register:focus {
    outline: 0 !important;
}


#anim {
    font-family: 'Indie Flower',serif;
    color: #fef3e2;
    width: 0px;
    height: 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(135deg, #c23b1e 0%, #e8894a 100%);
}

#helpOne,#helpTwo,#helpThree {
    opacity: 0;
    font-family: 'Indie Flower',serif;
    color: white;
    position: absolute;
    font-size: 225%;
    text-align: center;
    width: 100%;
}

#help {
    font-family: 'Indie Flower',serif;
    color: #ffffff;
    font-size: 130%;
    padding-top: 8px;
    padding-bottom: 3px;
    padding-right: 18px;
    padding-left: 18px;
    border: solid 0px #9c3d1a;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    background: #e8894a;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(156,61,26,0.2);
}

#help:hover {
    background: #c23b1e;
}

#help:active {
    background: #9c3d1a;
}

#help:focus {
    outline: 0 !important;
}

#exitButton {
    font-family: 'Indie Flower',serif;
    color: #9c3d1a;
    font-size: 130%;
    padding: 10px 25px;
    border: solid 3px #fef3e2;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    background: #fef3e2;
    font-weight: bold;
}

#exitButton:focus {
    outline: 0 !important;
}
/* Dark-mode support */
[data-theme="dark"] body { background: linear-gradient(135deg, #2a1810 0%, #4a2618 100%) !important; color: #fef3e2 !important; }
[data-theme="dark"] #firstDiv { color: #fef3e2 !important; }
[data-theme="dark"] h1, [data-theme="dark"] h2 { color: #f4a261 !important; }
