.light {
  --links : rgb(149, 54, 20);
  --hoverlinks: #460c52;
  --storylink:rgb(65, 214, 228);
  --backcolors:#ffffff;
  --back:var(--backcolors);
  --surroundback:var(--backcolors);
  --dark-reader-background:var(--backcolors);
  --text: rgb(0, 0, 0);
  --headertext: antiquewhite;
  --headerbackground:black;
  --sliderbuttonbackground: var(--headerbackground);
  --sliderbuttontext: var(--backcolors);

    .sliderbutton:hover {
        background-color: var(--backcolors);
        color:var(--sliderbuttonbackground);
    }

}

.dark {
  --links : rgb(230, 129, 92);
  --hoverlinks: #d78fe6;
  --storylink:rgb(65, 214, 228);
  --backcolors:#181717;
  --back:var(--backcolors);
  --surroundback:var(--backcolors);
  --dark-reader-background:var(--backcolors);
  --text: antiquewhite;
  --headertext: antiquewhite;
  --headerbackground:grey;
  --sliderbuttonbackground: var(--headerbackground);
  --sliderbuttontext: var(--backcolors);  

    .sliderbutton:hover {
        background-color: var(--backcolors);
        color:var(--sliderbuttonbackground);
    }

}

.mid {
  --links : rgb(230, 129, 92);
  --hoverlinks: #d78fe6;
  --storylink:rgb(65, 214, 228);
  --backcolors:#280740;
  --back:var(--backcolors);
  --surroundback:var(--backcolors);
  --dark-reader-background:var(--backcolors);
  --text: antiquewhite;
  --headertext: antiquewhite;
  --headerbackground:rgb(5, 27, 104);
  --sliderbuttonbackground: var(--headerbackground);
  --sliderbuttontext: var(--text);  

    .sliderbutton:hover {
        background-color: black;
        color:var(--text);
    }

}


html {
    margin:0px;
    padding: 0px;
}

body {
    display:grid;
    grid-template-areas:    "header header header"
                            "nav main settings"
                            "footer footer footer";
    grid-template-columns: 1fr 6fr 1fr;
    background-color:var(--dark-reader-background);
    border-radius: 30px;
    max-width: 70vw;
    margin: -2px auto;
    font-family: Arial, sans-serif;
}

section {
    margin: 0px;
}

a {
    text-decoration: none;
    font-weight: 700;
    color: var(--links);
}

a:visited {
    color: var(--links);
}

header {
    grid-area: header;
    height: 90px;
    border: 2px solid var(--surroundback);
    padding:0px;
    margin:0px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: var(--headerbackground);
    color: var(--headertext);
}

header > img {
    width: 19vw;
    padding-left: 2vw;
    padding-top: 10px;
}

header h1, header h4 {
    margin-top: 0px;
    margin-bottom: 0px;
}

header h1 {
    font-size: 3.3rem;
    color: var(--headertext);
	margin-left: 2rem;
	margin-top:0.5rem;
}

header h4 {
    margin-left: 14vw;
    color: var(--headertext)
}

main {
    grid-area: main;
    min-height:20px;
    padding:30px;
    margin: 10px 10px 10px 10px;
    background-color:var(--back);
    border-radius: 30px;
    color: var(--text);
}

main > h1 {
    margin-top: -10px;
    color: var(--lowerheadertext);
    
}

nav {
    grid-area: nav;
    text-align:right;
    color: var(--text);
    margin-top: 100px;
}


fieldset {
    width:90px;
    border-radius: 10px;
    padding-bottom: 15px;
    margin-bottom: 10px;
	color:var(--text);
	font-weight:500;
}


aside#settings {
    grid-area: settings;
    background-color:var(--surroundback);
    color: var(--text);
    margin-top:100px;
    
}

nav, aside#settings {
    height: 100%;
    padding: 0;
    padding-top: 10px; 
    background-color:var(--surroundback);
    /* border:1px solid white; */
}

footer {
    grid-area: footer;
    color: var(--text);
    text-align: center;
    font-size: 0.8rem;
    padding: 20px;
    margin: auto;
    margin-top:5px;
    background-color:var(--back);
    width: 94%;
    border-radius: 20px;
}

a.sliderbutton {
    display:inline-flex;
    flex-direction:column;
    font-size: 1rem;
    font-weight:700;
    background-color: var(--sliderbuttonbackground);
    color:var(--sliderbuttontext);
    border-radius: 5px;
    border:2px var(--text) solid;
    margin-bottom: 10px;
    width: 100px;
    height: 50px;
    justify-content: center;
    text-align:center;
}


.sliderclicked {
    background-color: var(--sliderbuttonbackgroundhighlight);
    color:var(--sliderbuttontextselected);
}

#star {
    background-image:url("images/starzoom.gif");
    background-position: center;
    color: antiquewhite;
    height:60px;
}

