
/*
	Just stick the window in the center of the screen.
*/

#title {
    height:160px;
    width:244px;
    padding:0;
    margin:0 auto;
    
}

#title-ENG {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: auto;
    line-height: 0;
    text-indent: -10000px;
    background-repeat: no-repeat;
    background-image: url(images/FlowPressureTitle.svg);
}


#intro-screen-content {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 960px;
	height: 540px;
	display: grid;
	align-items: center;
	justify-items: center;
}

#welcome-window {
	background-color: transparent;
	max-width: 500px;
	padding: 1em;
    width:48%;
    display:flex;
    flex-flow: column;
}

#welcome-message {
    margin:2px 0;
    margin:1em 0em;
    color: #fff;
    font-family:Lato, sans-serif;
    font-size:11pt;
    line-height:14pt;
    letter-spacing: .5pt;
    text-align: center;
}
#menu-window {
    display:flex;
    flex-flow: column;
    
}

#menu-window > .soil-button,
#menu-window > button.soil-button
{
    position:relative;
    display:flex;
    border-radius:2px;
    align-items: center;
    justify-content: center;
	height:80px;
    width:auto;
	border: 3px solid rgba(255,255,255,1);
	background-position: center; 
    overflow:hidden;
    margin:5px 0;
    transition:all .3s ease-out;
    cursor: pointer;
}

#menu-window > .soil-button:hover,
#menu-window > .soil-button.has-tab-focus,
#menu-window > .soil-button:focus {
	border: 3px solid yellow;
	outline: none;
    box-shadow: 0 0 10px rgba(255,255,155,1);
    transform:scale(1.02);
}

#menu-window > .soil-button:active {
    transform:scale(.95);
}
#menu-window > .soil-button .soil-button-text {
    position:relative;
    display:inline-block;
    width:auto;
    height:34px;
    padding:0 12px;
    background:#fff;
    font-size:24px;
    line-height:34px;
    margin:0 auto;
    font-weight:bold;
    color:#333;
}
#menu-window > .soil-button:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-size:100%;
	background-position: center; 
    z-index:0;
}

#clay-button {
	background-image: url(images/clay-button-backdrop.png);
}
#loam-button {
	background-image: url(images/loam-button-backdrop.png);
}
#sand-button {
	background-image: url(images/sand-button-backdrop.png);
}





#sky-background.intro-scene {	/* Background sky image. */
	height: 540px;
}

.soil-background.intro-scene {	/* Background soil image. */
	bottom:0px;
    top:-5px;
    height:105%;
}

