body {
    font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
    background-color: white;
	width: device-width;
	max-width: 480px;
	margin: auto;
}

h1 {
	text-align: center;
    font-size: 28px;
    margin-top: 2px;
    margin-bottom: 0px;
}

h2 {
	text-align: left;
    font-size: 24px;
    margin-top: 2px;
    margin-bottom: 0px;
}

textarea {
    height: 44px;
    width: 100%;
    max-width: device-width;
    line-height: 16px;
	margin-bottom: 1px;
	font-size: 16px;
    resize: none;
    overflow: hidden;
    transition: width 0.25s;
}

.prompt {
  font-style: italic;
}

.display {
    width: 100%;
    min-height: 8px;
    padding-bottom: 0px;
    border-spacing: 0 0px;
}

.display-title {
    width: 100%;
    min-height: 30px;
    padding-bottom: 0px;
    border-spacing: 0 0px;
    margin-bottom: 0px;
}

.storyline {
    height: 44px;
    max-height: 80px;
    background-color: #FFFFFF;
    border: 2px solid;
    border-color: #cccccc;
    overflow: auto;
    box-sizing: border-box;
}

.storylinenext1 {
    height: 44px;
    max-height: 80px;
    background-color: #FFFFFF;
    border: 4px solid;
    border-color: #50C878;
    overflow: auto;
    box-sizing: border-box;
}

.storylineactive1 {
    height: 44px;
    max-height: 80px;
    background-color: #C1E1C1;
    border: 2px solid;
    border-color: #C1E1C1;
    overflow: auto;
    box-sizing: border-box;
}

.storylinenext2 {
    height: 44px;
    max-height: 80px;
    background-color: #FFFFFF;
    border: 4px solid;
    border-color: #0000FF;
    overflow: auto;
    box-sizing: border-box;
}

.storylineactive2 {
    height: 44px;
    max-height: 80px;
    background-color: #ADD8E6;
    border: 2px solid;
    border-color: #ADD8E6;
    overflow: auto;
    box-sizing: border-box;
}

.storylinehidden {
    height: 44px;
    max-height: 80px;
    background-color: #cccccc;
    border: 2px solid;
    border-color: #cccccc;
    overflow: auto;
    box-sizing: border-box;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: device-width;
	max-width: 400px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.column {
  margin: 0 auto;
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.my-botton {
	height: 44px;
	width: 200px;
    font-size: 28px;
    border: 0;
    background: #50C878;
    color: white;
    outline: none;
    margin: 0;
    padding: 0 10px;
    border-radius: 100px;
    visibility: hidden;
    display: inline-block;
}

.my-botton2 {
	height: 44px;
    font-size: 16px;
    border: 0;
    background: white;
    color: black;
    outline: none;
    margin: 0;
    padding: 0px 10px;
    visibility: hidden;
    display: inline-block;
    float: right;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  top: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}
