/* Can Figure Game CSS file. */


.bodyDefaultClass {
    background-color: #bbe1fa;  
    border: 8px solid black;
}

.menuNameWrapper{
    box-sizing: border-box;
    width: 810px;
    height: 140px;
    line-height: 100px; /*line height must equal height to keep text vertically centered*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    border: 0px solid black;
    
    text-align: center;
    overflow: hidden;
}

.menuNameText{
    display: inline-block;
    background-color: #3282b8;
    box-sizing: border-box;
    vertical-align: middle;
    padding: 4px;
    padding-left: 15px;
    padding-right: 15px;
    border: 12px outset #3282b8;
    
    font-size: 42px;
    font-family: Georgia, Arial, sans-serif;
    color: #b0cac7;
    text-shadow: 2px 2px 1px #1b262c;
    
    line-height: 1.1;
}

.menuNameTextStart{
    display: inline-block;
    height: 140px;
    background-color: #3282b8;
    box-sizing: border-box;
    vertical-align: middle;
    padding: 4px;
    padding-left: 15px;
    padding-right: 15px;
    border: 12px outset #3282b8;
    
    font-size: 42px;
    font-family: Georgia, Arial, sans-serif;
    color: #b0cac7;
    text-shadow: 2px 2px 1px #1b262c;
    
    line-height: 1.1;
    
    overflow: scroll;
}

.menuWrapper
{
    box-sizing: border-box;
    width:400px;
    height:400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border: 0px solid darkblue;
    border-radius: 12px;
}

.scrollArrowContainerClass{
    height: 30px;
}

.menuEntryWrapper{
    box-sizing: border-box;
    height: 100px;
    border: 0px solid black;
    border-radius: 1px;
}

.menuEntryWrapperStart{
    box-sizing: border-box;
    height: 100px;
    border: 0px solid black;
    border-radius: 1px;
    
    transition: height 0.5s;
}

.menuEntryWrapperStart:hover{
    height: 200px;
}

.entryCursorArea{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    height: 100%;
    width: 15%;
    border: 0px solid green;
    border-radius: 1px;
}

.cursorImage{
    display: block;
    width: 100%;
    height: 60%;
    margin-top: 12px;
    
}

.entryTextArea{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    height: 100%;
    width: 85%;
    border: 0px solid blue;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: none;
    background-image: url("assets/images/bluePalette/blue_button13.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    line-height: 100px;
    text-align: center;
}

.entryTextAreaStart{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    height: 100%;
    width: 85%;
    border: 0px solid blue;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: none;
    background-image: url("assets/images/grayPalette/grey_button05.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    line-height: 100px;
    text-align: center;
    
    transition: height 0.5s;
}

.entryTextAreaStart:hover .entryTextStartExpanded{
    height: 160px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.0;
}

.entryTextAreaStartAilHalf{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    height: 100%;
    width: 85%;
    border: 0px solid blue;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: none;
    background-image: url("assets/images/redPalette/red_button10.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    line-height: 100px;
    text-align: center;
    
    transition: height 0.5s;
}

.entryTextAreaStartAilHalf:hover .entryTextStartExpanded{
    height: 150px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.0;
}

.entryTextAreaStart:hover .entryTextStart{
    height: 160px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.0;
}

.entryText{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    margin: 2px;
    padding: 8px;
    padding-bottom: 32px;
    
    border: 0px dashed brown;
    line-height: 1.0;
    font-family: Georgia, Arial, sans-serif;
    font-size: 30px;
    color: #252a34;
    overflow: hidden;
}

.entryTextStart{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    margin: 2px;
    padding: 8px;
    padding-bottom: 32px;
    
    border: 0px dashed brown;
    line-height: 1.0;
    font-family: Georgia, Arial, sans-serif;
    font-size: 30px;
    color: #252a34;
    overflow: hidden;
}

.entryTextAreaStartAilHalf:first-child{
    height: 70px;
}

.entryTextStartExpanded{
    display: block;
    width: 320px;
    height: 80px;
    box-sizing: border-box;
    vertical-align: middle;
    margin: 10px;
    padding: 4px;
    
    border: 0px dashed brown;
    line-height: 0.9;
    font-family: Georgia, Arial, sans-serif;
    font-size: 15px;
    color: #252a34;
    overflow: scroll;
    
    transition: height 0.5s;
}

.checkbox{
    display: inline-block;
    box-sizing: border-box;
    height: 100px;
    width: 100px;
    position: absolute;
    left: 400px;
    
    border: 0px dashed purple;
}

.checkboxImage{
    width: 70%;
    height: 70%;
    margin-top: 8px;
    
}

.topScrollArrowClass{
    box-sizing: border-box;
    height: 30px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    
    border: 0px dashed purple;
}

.topScrollArrowImage{
    width: 100%;
    height: 100%;
}

.bottomScrollArrowClass{
    box-sizing: border-box;
    height: 30px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    
    border: 0px dashed purple;
}

.bottomScrollArrowImage{
    width: 100%;
    height: 100%;
}

.linkArrowClass{
    display: inline-block;
    box-sizing: border-box;
    height: 100px;
    width: 40px;
    position: absolute;
    
    border: 0px dashed purple;
}

.linkArrowImage{
    width: 95%;
    height: 85%;
    margin-left: 6px;
    margin-top: 6px;
}

.endingClass{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 500px;
    transform: translate(-50%, -50%);
    border: 15px ridge black;
    background-color: antiquewhite;
    text-align: center;
    
    overflow: auto;
    font-size: 30px;
    
    display: none;
    opacity: 0%;
    transition: opacity 2s;
}


/*Generic Classes*/


/**/


/*ANIMATIONS*/





/**/
/**/
/**/









