@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700|Quattrocento:700');

@font-face {
    font-family: "Stranger Bold";
    src: URL("media/Benguiat\ Bold.ttf") format('truetype'),
    url('media/BenguiatStd-Bold.otf'); /* IE9 Compat Modes */
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
    background: white;
    overflow: hidden;
}

@media screen and (prefers-reduced-motion: no-preference) {
    body.switched {
        transition: color 0.6s, background-color 0.6s;
    }
}

h1,
h2 {
    text-align: center;
    font-family: "Quattrocento", Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

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

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

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

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

.written-in-ink {
    z-index: 3;
    font-size: 9pt;
    font-family: sans-serif;
    text-align: center;
    font-weight: 700;
    position: fixed;
    display: block;
    width: 100%;
    background: white;
    margin: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    height: 14px;
    top: 0;
}

@media screen and (prefers-reduced-motion: no-preference) {
    .written-in-ink {
        transition: color 0.6s, background 0.6s;
    }
}

/* 
  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: 100%;
    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: 700px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 2em;
    background: #f9f9f9;
}

@media screen and (prefers-reduced-motion: no-preference) {
    .switched .container {
        transition: background-color 0.6s;
    }
}

p {
    font-size: 13pt;
    color: #4A4A4A;
    line-height: 1.7em;
    font-weight: lighter;
}

a {
    font-weight: 700;
    color: #b97c2c;
    font-family: sans-serif;
    text-decoration: none;
}

.unclickable {
    font-weight: 700;
    color: #4f3411;
    font-family: sans-serif;
    text-decoration: none;
    cursor: not-allowed;
}

a:hover {
    color: black;
}

@media screen and (prefers-reduced-motion: no-preference) {
    a {
        transition: color 0.6s;
    }

    a:hover {
        transition: color 0.1s;
    }
}

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;
}

@media screen and (prefers-reduced-motion: no-preference) {
    .container>* {
        transition: opacity 1.0s;
    }
}

/*
  Class applied to all choices
  (Will always appear inside <p> element by default.)
*/
.choice {
    text-align: center;
    line-height: 1.7em;
    margin-bottom: 15px;
}

/* 
  Class applied to first choice
*/
:not(.choice)+.choice {
    padding-top: 1em;
}

/*
  Class applied to choice links
*/
.choice a, .choice span {
    font-size: 15pt;
    display: inline-block;
    padding: 15px 25px;
    text-decoration: none;
    color: #000000;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}


.choice a::before {
    content: attr(href);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 #00FFFF;
    top: 0;
    color: #000000;
    background: #FFFFFF;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
}

.choice a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Three choice shapes
 */
.choice:nth-child(3n-2) a {
    background-color: #FF00FF;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}
.choice:nth-child(3n-1) a {
    background-color: #00FFFF;
    clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
}
.choice:nth-child(3n) a {
    background-color: #FFFF00;
    clip-path: polygon(0 5%, 100% 0, 98% 95%, 2% 100%);
}



/* 
  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;
}

@media screen and (prefers-reduced-motion: no-preference) {
    #controls {
        transition: color 0.6s, background 0.6s;
    }
}

#controls [disabled] {
    color: #ccc;
}

#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;
    }
}

/* MY CLASSES */

/* Glitch style titles inside text */
.chapter_title{
    font-family: "Stranger Bold";
    color: #FFFF00; 
    text-shadow: 2px 2px #FF00FF, -2px -2px #00FFFF;
    font-size: xx-large;
    text-align: center;
}

.dialog_maya::before {
    content: 'Maya: ';
  }

.dialog_you::before {
    content: 'You: ';
  }

.dialog_maya{
        margin-left: 20px;
        padding-left: 10px;
        font-style: italic;
        border-left: 3px solid #007bff;
}

.dialog_you{
    margin-left: 20px;
    padding-left: 10px;
    font-style: italic;

    border-left: 3px solid red;
}

[class^="tweet_"] {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding:16px;
    font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height:1.5;
    color: #14171a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

[class^="tweet_"]::after {
    content: '🔁 Share   ♥️ Like   💬 Reply';
    display: block;
    margin-top: 12px;
    color: #1da1f2;
    font-size: 13px;
  }

  .tweet_elias::before {
    content: '@EliasV';
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
    color: #1da1f2;
    font-size: 15px;
  }
.tweet_inteli::before {
    content: '@IntelliVance';
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
    color: #1da1f2;
    font-size: 15px;
  }


  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  }
  
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }



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

body.dark {
    background: #121212;
    color: #E0E0E0;
}

.dark h2 {
    color: #666;
}

.dark p {
    color: #FFFFD7;
}

.dark .chapter_title {
    /* Glitch style titles inside text */
    font-family: "Stranger Bold";
    color: #FFFFD7; 
    text-shadow: 2px 2px #FF00FF, -2px -2px #00FFFF;
    font-size: xx-large;
    text-align: center;
}

.dark .container {
    background: #1E1E1E;
}

.dark .written-in-ink {
    background: #121212;
}
.dark .unclickable{
    color: #c4af87;
    cursor:not-allowed;
}

@media screen and (prefers-reduced-motion: no-preference) {
    .dark a {
        transition: color 0.6s;
    }
}

.dark strong {
    color: #1E1E1E;
}

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

.dark .end {
    color: #E0E0E0;
}

.dark #controls {
    background: #121212;
}

.dark [class^="tweet_"] {
    background-color:#121212;
    color: #E0E0E0;
}