/* 
    Created on : Jun 26, 2016, 5:34:10 PM
    Author     : Len Garcia
*/
body{
    /*background-image: url("images/crumpled_paper.bmp"); 
    background-repeat: repeat; */
    background-image: url("images/ricepaper_blue.jpg"); 
    background-repeat: repeat;
    background-color: black;
    color: darkgreen;
}
::-webkit-scrollbar {
    width: 1.2em;
    height: 1em;
}

::-webkit-scrollbar-track {
  background-color: hsl(120 20% 50%/1);
  border-radius: 100vw;
  margin-block: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: hsl(120 100% 20% / 1);
  border: 0.25em solid hsl(120 100% 20% / 1);
  border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(120 100% 10% / 1);
}

.unselectable {
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */  
  border: 6px;
  border-color: darkgreen;
  border-style: groove;
  padding: 6px;
  width: 80%;
}

header {
    position: absolute;
    top:10px;
    left:30%;
    margin: 5px 5px 40px 10px;
}

#footer {
    background-color: transparent;
    color:white;
    clear:both;
    text-align:center;
    padding:5px;
    position: relative;
    top: 320px;
}
blockquote {
    font-style: oblique;
    font-size:  1em;
}
.anteroom {
    background-color: transparent; 
    font-size: 150%;
    font-weight: 600;
    position: relative;
    top: 280px;
}
section {
    position: relative;
    top: 300px; 
    left: 40px;
}
.question {
    color: darkgreen;
    font-size: 120%;
    font-weight: 600;
}

.answers li {
    list-style: upper-alpha;
}

label {
    margin-left: 0.5em;
    cursor: pointer;
}

#results {
    background: yellowgreen;
    color: darkgreen;
    padding: 3px;
    text-align: center;
    width: 200px;
    cursor: pointer;
    border: 5px darkgreen;
}

#results:hover {
    background: yellow;
    color: darkgreen;
    font-weight: 600;
    padding: 3px;
    text-align: center;
    width: 200px;
    cursor: pointer;
    border: 5px chartreuse;
    border-radius: 10%;
}

#categorylist {
    margin-top: 6px;
    display: none;
}

#category1, #category2, #category3, #category4, #category5, #category11 {
    display: none;
}

#closing {
    display: none;
    font-style: italic;
} 

/* for tablet ********************************************************/
@media only screen and (max-width : 990px) and (min-width: 400px) {
    header {
        left: 20%;
        width: auto;
        margin: 5px 5px 10px 10px;
    }
    blockquote {
        font-style: oblique;
        font-size:  1em;
        margin-top: -45px;
    }
    #room {
        width: 85%;
    }
    
}
/* for cellphone ********************************************************/
@media only screen and (max-width : 399px) and (min-width: 280px) {
    header {
        left: 20%;
        width: auto;
    }
    blockquote {
        font-style: oblique;
        font-size:  1em;
        margin-top: -55px;
    }
    .question {
        width: 60%;
    }
}
