body {
    
    color: #eeeedd;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.3em;
    background: 
        linear-gradient(to bottom right, rgba(71, 0, 0, 0.96), rgba(31, 0, 0, 0.98)),
        url("../img/pattern.jpg");
    width:100vw;
    height:100vh;
    background-attachment: fixed;
}
#interface {
  flex-direction: row;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  min-height: 90vh;
  max-width: 98vw;

}
.column1 {
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    align-items: right;
    flex: 2;
  margin: 0.5em;
}
.column2 {
display: flex;
    flex-direction: column;
    flex: 1;
    flex-wrap: wrap;
  margin: 0.5em;
}

.stack {


}
.window{
    width: 65%;
    margin: 0.5em;
    overflow-wrap: break-word;
    vertical-align: bottom;
}
.button {
    color: #eeeedd;
    text-decoration: none;
    cursor: pointer;
}
.button:hover, .button:active {
    text-decoration: underline;
}
#output {
    position: relative;
}
#content {
    position: absolute;
    bottom: 0;
}
.waiting{
    visibility: hidden;
}
.hRow, #role{
    display: flex;
    flex-direction: row;
    justify-content:center;
    width: 100%;

}
#role .stack {
    margin: 0 1em;
}
#messageNotification {
    text-decoration: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #b14c16;
    color: #d4cab8;
    padding: 1em;
}
h1{
    font-family: 'Great Vibes', cursive;
    font-weight:100;
    text-align: center;
    margin-bottom:0;
}
input[type=text] {
    overflow: hidden;
    background-color: #330000;
    color: #eeeedd;
    font-family: 'Montserrat', sans-serif;
    border: 1.5px solid #eed;
    padding: .5em;
    border-radius: 4px;
}
input[type=text]#townfield {
    width: 4em;
    font-size: 1em;
    margin: 0 1em 0 0;
}
input[type=text]#namefield{
    width: 10em;
    font-size: 1em;
} 
.center{
    text-align: center;
}
.chatRow{
    display:flex;
}

#c1, #c2, #c3, #c4, #c5 {
    flex: 1;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0.5em 0.3em;
    background: rgba(0,0,0,0.2);
    padding: 0.5em;
}
.disp{
    display: flex;
    flex-direction: column-reverse;
    height: 12em;
    overflow-y: auto;
}
.field {
    width: 75%;
}

.send{
    border: 0;
    background: transparent;
    font-size: 1em;
    padding: .5em 0 .5em .2em;
}
#cContainer {

}
#welcome{
    margin-bottom: 1em;
}
#controlHolder{

}
#roleHolder{

}
.messages{
    height:12em;
     justify-content:flex-end;
    overflow-y: hidden;
    display:flex;
    flex-direction:column;
}
.hRow .button {
    text-align: center;
}

/* Customize the label (the container) */
.container {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    margin: 0 0.7em;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
left:-11px;
    top:-4px;
    
  height: 35px;
  width: 35px;
  background-color: #330000;
  border-radius: 50%;
  z-index: -1;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #330000;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #eeeedd;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: 2px;
  left: 2px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #330000;
}
#storage{
    display:none;
    visibility:hidden;
}
.bigicon {
    font-size: 2em;
}
#cookieClear{
    display: none;
}
.joinLabel {
    margin: 0.5em 1em 0.5em 0;
}


@media only screen and (max-width: 768px) {
  /* For mobile phones: */
    #interface, .hRow{
        flex-direction:column
    }
    .joinLabel, .startLabel{
        display:block;
    }
}
#welcome p {
    max-width: 20em;
    margin: auto;
    margin-top: 1em;
}
p a{
    color:#eeeedd;
    text-decoration:underline;
}
#playerCount {
    border-top: solid 1px;
}
.chatHead{
    border-bottom: 1px solid;
}
.startLabel{
    flex-grow: 1;
}
.startRow{
    border-bottom: 1px solid;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.0); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(71, 0, 0, 0.5); 
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(71, 0, 0); 
}

.playerMenu{
    display:none;
    background: rgba(0,0,0,0.8);
    position:absolute;
}
.show {display: block;}
.modControl {
    border: solid 1.5px;
    border-radius: 0.5em;
    margin: 0;
    padding: 1px;
    background: #330000;
}
.modControl:hover {;
  border: solid 1.5px;
  margin: 0;
  box-shadow: 0 0 6px #ff0000;
  background: black;
}
.playerName{
  padding-bottom: 6px
}