@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    background: white;
    overflow: hidden;
}

body.switched {
    transition: color 0.6s, background-color 0.6s;
}

h1,
h2 {
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30pt;
    margin-bottom: 10px;
}

h2 {
    font-size: 14pt;
    font-style: italic;
    font-weight: lighter;
    color: #BBB;
}

.header {
    padding-top:2em;
    padding-bottom: 2em;
}

/*
  Built-in class:
    # author: Name
*/
.byline {
    font-style: italic;
}

/* 
  Enables <iframe> support work on itch.io when using mobile iOS
*/
.outerContainer {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    height: 95%;
    width: 100%;
    top: 0;
    left: 0;
    margin-top: 24px;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 980px) {
    .outerContainer {
        margin-top: 44px;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.container {
    display: block;
    max-width: 310px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 4em;
    background: white;
}

.switched .container {
    transition: background-color 0.6s;
}

p {
	padding-left: 10px;
    font-size: 14pt;
    color: #fff;
    font-weight: 400;
}

a {
    color: #ffffff;
    text-decoration: none;
}

strong {
    color: black;
    font-weight: bold;
}

img {
/*    display: block;*/
    margin: 0 auto;
    max-width: 100%;
}

.container .hide {
    opacity: 0.0;
}

.container .invisible {
    display: none;
}

.container>* {
    opacity: 1.0;
    transition: opacity 1.0s;
}

/*
  Class applied to all choices
  (Will always appear inside <p> element by default.)
*/
.choice {
    text-align: right;
    line-height: 1em;
	border: 3px solid #e9ab22;
    background-color: #4C4C4C;
    padding: 6px 12px;
	margin: 10px 0 10px 20px
}
/* 
  Built-in class:
    The End # CLASS: end
*/
.end {
    text-align: center;
    font-weight: bold;
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
}

#controls {
    z-index: 4;
    font-size: 9pt;
    text-align: center;
    padding-bottom: 6px;
    position: fixed;
    right: 14px;
    top: 4px;
    user-select: none;
    background: white;
    transition: color 0.6s, background 0.6s;
}

#controls>*:not(:last-child):after {
    content: " | ";
}

@media screen and (max-width: 980px) {
    #controls {
        z-index: 2;
        padding-top: 24px;
        top: 0;
        left: 0;
        right: 0;
    }
}

/* 
  Dark Theme (Added in Inky 0.10.0)
    # theme: dark
*/

body.dark {
    background: black;
    color: white;
}

.dark h2 {
    color: #666;
}

.dark .container {
    background: black;
}

.dark strong {
    color: white;
}

.dark #controls [disabled] {
    color: #444;
}

.dark .end {
    color: white;
}

.dark #controls {
    background: black;
}
.character-bar {
	font-weight: 600;
	color: #000;
	padding-left: 7px;
    background-color: #fff;
    background-repeat: no-repeat;
	background-image: url(./images/name-bar-notch-right.png);
	background-position: bottom right;
}
.player-bar {
	font-weight: 600;
	color: #000;
    padding: 0 5px;
    background-color: #fff;
    background-repeat: no-repeat;
    padding-left: 20px;
	margin-left: 10px;
    background-image: url(./images/name-bar-notch-left.png);
    background-position: bottom left;
}
.player-answer {
    padding-left: 35px;
    text-align: right;

}
.non-datapad-action, non-datapad-event, .player-action {
	font-style: italic;
	color: #a5a5a5;
}
.non-datapad-event {
	text-align: center;
}

.action, .transmission {
	color: #E7A932;
    text-align: center;
	font-weight: 400;
	text-transform: uppercase;
}
.transmission::before { 
  content: "/// ";
}
.transmission::after { 
  content: " \\\\\\";
}
.button {
	text-align: center;
	margin: 2em 0;
}
.button-text {
    text-align: center;
    font-weight: 400;
    font-size: 28px;
    text-transform: uppercase;
    color: white;
    border: 2px solid #E7A932;
    padding: 10px;
    background-color: #4C4C4C;
    
}
.todo {
	color: #666666;
	background-color: #2a0101;
	text-align: center;
	font-style: italic;
}
.debug {
	color: #000000;
	background-color: #986e1f;
	text-align: center;
	font-weight: 600;
	font-style: italic;
	text-transform: uppercase;
}