/*
#927b60 dull brown
#f0c5ad dusty pink
#836435 brown
#fbecbe ivory
#ab6969 dull raspberry
*/

#mainBody {
	margin: 0;
	padding: 0;
	height:100vh;
	width:100vw;
	margin-left: auto;
	margin-right: auto;
    background-image: url("../img/assets/yagasuri.gif");
    background-repeat: repeat;
	background-color: #836435;
    background-size: 40px;
    image-rendering: pixelated;
    overflow-y: hidden;
    display: flex;
}

#contentBody {
    background-color: #fbecbe;
    background-image: url("../img/assets/cafebg.svg");
    background-size: 180px;
    padding-top: 110px;
}
h1 {
    margin-top: 0;
}

#overlay {
	height: 100vh;
	width: 100%;
	z-index: 9001;
	position: fixed;
	pointer-events: none;
	top: 0;
    display: none;
    flex-direction: column;
    align-content: center;
    background-color:rgb(240, 197, 173, .8);
}
#drink {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#overlay img {
    pointer-events: all;
    max-width: 300px;
    max-height: 300px;
    filter: drop-shadow(0px 0px 10px #fbecbe);
    image-rendering: smooth;
}
#overlay .imgdesc {
    color: rgb(44, 44, 44);
    filter: drop-shadow(0px 0px 3px #fbecbe );
}

#title img {
    height: 110px;
    position: fixed;
    top:15px;
    left: 20px;
    filter: opacity(50%);
    z-index: 500;
    color: rgb(44, 44, 44);
    filter: drop-shadow(0px 0px 3px #ab6969);
    pointer-events: none;
    
}

#leftPartition {
    width: 15vw;
    height: 100vh;
    align-self: flex-start;
    background-image: url("../img/assets/yagasuri.gif");
    background-repeat: repeat;
    min-width: fit-content;
    display: inline-flex;
}

#navigation {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1em;
    padding-right: 2em;
    padding-left: 2em;
    width: fit-content;
    height:fit-content;
    border: 2px;
    border-style: solid;
    border-color: #836435;
    background-color: rgb(44, 44, 44);
    color: white;
}

#navigation h3 {
    text-decoration: underline;
    display: block;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

#navigation ul {
    list-style: none;
    padding-left: 0;
}

#navigation ul li {
    display: flex;
    justify-content: center;
}

#navigation ul li::before {
    content: "\200B";
}
#navigation a {
    color: white;
    text-decoration: none;
}
#navigation a:hover {
    text-decoration: underline;
    cursor: pointer;
}

#content {
    display: flex;
    width: 50vw;
    min-height: 100%;
    border-left: 5px;
    border-right: 2px;
    border-top: 0px;
    border-bottom: 0px;
    border-style: solid;
    border-color: #836435;
}

#rightPartition {
    display: flex;
    flex-flow: column-reverse;
    width: 35vw;
    min-height: 100%;
    background-color: #fbecbe;
}

#rightPartitionBG {
    background-image: url("../img/assets/cafebg.jpg");
    filter: blur(5px);
    background-size:contain;
    position: fixed;
    width: 100%;
    height: 100%;
    background-position-x: -14%;
}

#dialogbox {
    display: flex;
    flex-flow: column;
    align-self: center;
    width: fit-content;
    max-width: 80%;
    background-color: #fbecbe;
    border-color: #927b60;
    border-style: groove;
    border-width: 2px;
    border-radius: 150px;
    padding-right:1em;
    padding-left:1em;
    padding-bottom: .5em;
    padding-top: .5em;
    z-index: 10000;
}

#dialogbox p {
    text-align: center;
}

#dialogbox form {
    display: flex;
    align-self: center;
}

#dialogbox input[type=button] {
    color: #836435;
    background-color: #f0c5ad;
    border-color: #ab6969;
    border-radius: 3px;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

#dialogbox input[type=button]:hover {
    border-color: #836435;
}
#dialogbox input[type=text] {
    resize: none;
}

#barista {
    max-height: 70vh;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-self: flex-end;
    z-index: 10000;
    image-rendering: smooth;
}

h1, h2, h3, h4, h5 {
    color: rgb(44, 44, 44);
}

p, li {
    color: #836435;
}

ul p, ol p {
    margin: 0;
    color: #ab6969;
}

.imgdesc {
    display: block;
    text-align: center;
    font-style: italic;
    font-size: small;
}

img {
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: #836435;
}

a:hover {
    filter: drop-shadow(0px 0px 3px #f0c5ad);
}

.date {
    color:#696764;
}