body {
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: white;
}

button {
    position: relative;
    text-align: center;
    font-size: 24px;
    color: white;
    border-radius: 6px;
    background-color: deepskyblue;
}

button:active {
    background-color: #009dd1;
    color: #d1d1d1;
    color: #d1d1d1;
}

#start_screen {
    position: absolute;
    background-image: url(desk.png);
    background-size: cover;
    background-repeat:no-repeat;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#main_screen {
    position: fixed;
    width: 100%;
    height: calc(100% - 30px);
    top: 0;
    left: 0;
    background-color: white;
}

#phone_side {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: inherit;
    border-right: 3px solid #aaa;
    background-image: url("wood.png")
}

#word_side {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: inherit;
    margin: auto;
    padding-top: 10px;
    left: 50%;
    text-align: center;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#monitor {
    position: relative;
    height: 50%;
    top: 40px;
}

#keyboard {
    position: relative;
    width: 60%;
    padding-left: 10px;
    top: 20px;
}

#mouse {
    position: relative;
    width: 20%;
    padding-left: 10px;
    top: 10px;
}

#write {
    position: absolute;
    padding: 5px;
    width: 100px;
    text-align: center;
    font-size: 24px;
    color: white;
    border-radius: 6px;
    background-color: #9de5eb;
    left: 25%;
    top: 78%;
    border: 2px outset #b3edf2;
    text-shadow: 0 0 5px #41abe8;
}

#write:active {
    background-color: #98c7d6;
    border: 2px inset #b0cfd9;
    text-shadow: 0 0 5px #2686bd;
    color: #ddd;
}

#more_samples {
    position: absolute;
    padding: 5px;
    text-align: center;
    font-size: 24px;
    color: white;
    border-radius: 6px;
    background-color: #9de5eb;
    left: 70%;
    top: 75%;
    border: 2px outset #b3edf2;
    text-shadow: 0 0 5px #41abe8;
}

#more_samples:active {
    background-color: #98c7d6;
    border: 2px inset #b0cfd9;
    text-shadow: 0 0 5px #2686bd;
    color: #ddd;
}

#sample_num {
    position: absolute;
    top: 39%;
    left: 23%;
    z-index: 1;
}
#samples2 {
    position: absolute;
    top: 39%;
    left: 40%;
    z-index: 1;
}

#wordsanim {
    position: absolute;
    top: 15%;
    left: 33%;
    height: 23%;
}

#submit {
    position: relative;
    padding: 5px;
    text-align: center;
    font-size: 24px;
    color: white;
    border-radius: 6px;
    background-color: #9de5eb;
    left: 50%;
    transform: translate(-50%, 0%);
    border: 2px outset #b3edf2;
    text-shadow: 0 0 5px #41abe8;
}

#submit:active {
    background-color: #98c7d6;
    border: 2px inset #b0cfd9;
    text-shadow: 0 0 5px #2686bd;
    color: #ddd;
}


.tip {
    color: #888;
    font-style: italic;
    font-size: 14px;
}





#phone {
    position: absolute;
    height: 90%;
    width: 60%;
    border: 2px solid black;
    border-radius: 20px;
    transform: translate(35%, 4%);
    box-shadow: inset -5px 0px 5px rgba(0, 0, 0, 0.3), inset 5px 0px 5px rgba(256, 256, 256, 0.5), 7px 3px 10px;
    background-image: url("wallpaper.png");
    background-size: cover;
    background-position: center;
}

#phonetop {
    position: absolute;
    height: 10%;
    width: 101%;
    border-radius: 20px 20px 0px 0px;
    transform: translate(-.5%, -6%);
    background-color: black;
}

#phonebottom {
    position: absolute;
    height: 10%;
    width: 101%;
    border-radius: 0px 0px 20px 20px;
    transform: translate(-.5%, 906%);
    background-color: black;
}

#phonecontent {
    position: absolute;
    height: 80%;
    width: 100%;
    transform: translate(-1%, 12%);
    overflow-y: hidden;
}






.standard_notification,
.tip_notification {
    font-family: sans-serif;
    font-size: 12px;
    border-radius: 2px;
    margin: 8px;
    padding: 6px;
    color: white;
    background-color: #222;
}

.delete {
    margin-top: 3px;
    background-color: #eb3131;
    border: none;
    color: white;
    border-radius: 8px;
    position: relative;
    font-size: 12px;
    right: -73%;
}

.delete:active {
    background-color: #ba1313;
}

.event_notification {
    font-family: sans-serif;
    font-size: 12px;
    border-radius: 2px;
    margin: 8px;
    padding: 6px;
    color: white;
    background-color: #5d4c85;
}

.start_event {
    margin-top: 3px;
    background-color: #78de57;
    border: none;
    color: white;
    border-radius: 8px;
    position: relative;
    font-size: 12px;
}
.start_event:active {
    background-color: #47b025;
}

.delete_event {
    margin-top: 3px;
    background-color: #eb3131;
    border: none;
    color: white;
    border-radius: 8px;
    position: relative;
    font-size: 12px;
    right: -35%;
}

.delete_event:active {
    background-color: #ba1313;
}

.tip_notification,
.event_notification {
    animation: blinker .40s linear infinite;
}

@keyframes blinker {
    70% {
        opacity: 80%;
    }
}

.status_notification {
    font-family: sans-serif;
    font-size: 12px;
    border-radius: 2px;
    margin: 8px;
    padding: 6px;
    color: white;
    background-color: #444;
    opacity: 90%;
}






.link_buttons {
    background-color: Transparent;
    border: none;
    outline: none;
    color: deepskyblue;
    text-decoration: underline;
    font-family: serif;
    font-size: 16px;
    padding-left:0;
}

.link_buttons:hover {
    background-color: Transparent;
    border: none;
    outline: none;
    color: lightskyblue;
    text-decoration: underline;
    font-family: serif;
    font-size: 16px;
}

.link_buttons:active {
    background-color: Transparent;
    border: none;
    outline: none;
    color: red;
    text-decoration: underline;
    font-family: serif;
    font-size: 16px;
}





.drive_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 53px);
    width: calc(100% - 22px);
    border: 2px solid black;
    padding: 10px;
    background-image: url(driving.png);
    background-size: cover;
    background-color: #222;
    color:white;
    line-height: 25px;
    overflow-y: auto;
}



.hd_outside_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 53px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-image: url(hd.png);
    background-size: cover;
    background-color: #222;
    color:white;
    line-height: 25px;
}

#hd_minigame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 53px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-color: #222;
    color: white;
    line-height: 25px;
}

#hd_list {
    position: fixed;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 70%;
    border: 2px dashed white;
    font-family: 'Caveat', cursive;
    font-size: 23px;
    overflow-y: auto;
    
}

#hd_inventory {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 40%;
    height: 80%;
    border: 2px dashed white;
    font-family: monospace;
}

#inventory_header {
    position: relative;
    text-align: center;
    border-bottom: 2px solid #ccc;
    font-size: 30px;
    padding: 5px;
    color: orange;
}

#inventory_content {
    position: relative;
    width: auto;
    height: 91%;
    overflow-y: scroll;
}

#inventory_items {
    list-style-type: none;
}

#inventory_items li {
    width: 80%;
    margin: 5px;
    padding-left: 5px;
    border: 1px solid white;
}

#inventory_items button {
    position: relative;
    background-color: Transparent;
    border: none;
    outline: none;
    width: 100%;
    font-size: 20px;
    font-family: monospace;
}

#inventory_items button:hover {
    color: orange;
}
#inventory_items button:active {
    color: red;
}

#hd_minigame_complete {
    position: absolute;
    left: 16%;
    bottom: 4%;
}




.frys_outside_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-image: url(frys.png);
    background-size: cover;
    background-color: #222;
    color: white;
    line-height: 25px;
}

#frys_minigame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 53px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-color: #222;
    color: white;
    line-height: 25px;
}

#frys_list {
    position: fixed;
    top: 15%;
    left: 5%;
    width: 40%;
    height: 70%;
    border: 2px dashed white;
    font-family: 'Caveat', cursive;
    font-size: 23px;
    overflow-y: auto;
    
}

#frys_inventory {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 40%;
    height: 80%;
    border: 2px solid indianred;
    font-family: montserrat, impact, sans-serif;
}

#frys_inventory_header {
    position: relative;
    text-align: center;
    border-bottom: 2px solid indianred;
    font-size: 30px;
    padding: 5px;
    color: red;
}

#frys_inventory_content {
    position: relative;
    width: auto;
    height: 90%;
    overflow-y: scroll;
}

#frys_inventory_items {
    list-style-type: none;
}

#frys_inventory_items li {
    width: 80%;
    margin: 5px;
    padding-left: 5px;
    border: 1px solid red;
}

#frys_inventory_items button {
    position: relative;
    background-color: Transparent;
    border: none;
    outline: none;
    width: 100%;
    font-size: 20px;
    font-family: calibri, sans-serif;
}

#frys_inventory_items button:hover {
    color: red;
}
#frys_inventory_items button:active {
    color: purple;
}

#frys_minigame_complete {
    position: absolute;
    left: 16%;
    bottom: 1%;
}


.garage_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-image: url(garage.png);
    background-size: cover;
    background-color: #222;
    color: white;
    line-height: 25px;
}

#unload_button {
    background-color: #6b6457;
    border-radius: 0;
    padding: 20px;
    font-family: 'Arvo', monospace;
    border: 2px outset #a19581;
}

#fire_table {
    border-collapse: collapse;
    text-align: center;
    width: 50%;
}

#build_time_machine img {
    width: auto;
    height: 9%;
}

#time_machine_countdown {
    font-family: monospace;
}






.tm_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-image: url(tm.png);
    background-size: cover;
    background-color: #222;
    color: white;
    line-height: 25px;
}

#big_red_button:active {
    filter: invert(100);    
}

.tm_fail_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 95%;
    border: 2px solid black;
    padding: 10px;
    background-color: #000;
    color: white;
    line-height: 25px;
}

.pp_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-image: url(pp.png);
    background-size: cover;
    background-color: #000;
    color: white;
    line-height: 25px;
}

.tm_on_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    background-image: url(tm2.png);
    background-size: cover;
    background-color: #222;
    color: white;
    line-height: 25px;
}

.time_limbo_frame {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    padding: 10px;
    background-image: url(limbo.png);
    background-size: cover;
    color: rgba(0,0,0,0.6);
    font-family: 'Kufam', cursive;
}

#return_from_limbo {
    position: absolute;
    top: 31px;
    right: 55px;
    background-color: lightskyblue;
    border: 2px outset lightskyblue;
    color: cornflowerblue;
}

#return_from_limbo:hover {
    background-color: #c8ebf7;
    border: 2px outset #c8ebf7;
    color: #8fc0e3;
}

#return_from_limbo:active {
    background-color: cornflowerblue;
    border: 2px inset cornflowerblue;
    color: lightskyblue;
}

.time_limbo_frame #write {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}






.quit {
    position: fixed;
    float: right;
    right: 18px;
    bottom: 33px;
}

.quit button {
    background-color: darkred;
    color: lightyellow;
    border: 2px solid black
}






.phone {
  max-width: 300px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: table;
  margin: auto;
}

.header {
  min-width: 300px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #b2b2b2;
  color: #000000;
  font-weight: bold;
  padding-bottom: .5em;
  padding-top: .5em;
  padding-left: .5em;
  margin-left: -.5em;
  margin-right: -.5em;
  margin-bottom: -2em;
  text-align: left;
  text-transform: capitalize;
  display: table;
}

.messagebody {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  display: table;
  padding-left: .5em;
  padding-right: .5em;
}

.sent {
  font-size: 14px;
  float: left;
  color: #000000;
  margin: 0 0 0.5em;
  border-radius: 1em;
  padding: 0.5em 1em;
  background: #e5e5ea;
  max-width: 75%;
  clear: both;
  position: relative;
}

.sent::after {
  content: "";
  position: absolute;
  left: -.5em;
  bottom: 0;
  width: 0.5em;
  height: 1em;
}

.received {
  font-size: 14px;
  float: right;
  color: #000000;
  margin: 0 0 0.5em;
  border-radius: 1em;
  padding: 0.5em 1em;
  background: #96c5d9;
  max-width: 75%;
  clear: both;
  position: relative;
}

.received::after {
  content: "";
  position: absolute;
  right: -0.5em;
  bottom: 0;
  width: 0.5em;
  height: 1em;
}


#win_screen {
    background-color: white;
    width: 100%;
    height: 100%;
    padding-top: 30%;
    background-image: url(classroom.png);
    background-size: cover;
}

.prof_comments {
    position: relative;
    font-family: 'Caveat', cursive;
    font-size: 20px;
    color: red;
    text-align: left;
    left: 15%;
}

#lose_screen {
    background-color: white;
    width: 100%;
    height: 100%;
    padding-top: 50%;
    padding-left: 40%;
    padding-right: 40%;
}




#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 30px;
    width: 100%;
    background-color: #eeeeee;
    box-shadow: inset 0px -10px 10px #dddddd;
    border: 1px solid black;
    display: table;
    font-weight: bold;
    font-family: consolas, monopace;
}

#word_bar {
    position: relative;
    left: 0;
    height: inherit;
    padding-left: 6px;
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

#time_bar {
    position: relative;
    right: 0;
    bottom: 0;
    height: inherit;
    display: table-cell;
    vertical-align: middle;
    padding-left: 6px;
    border-left: 1px solid #bbb;
    width: 50%;
}




.warning {
    position: fixed;
    top: 0;
    left: 0 !important;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
}

.warning_box {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #222;
    color: white;
    border: 2px outset gray;
}

.warning_box button {
    background-color: red;
    border: 2px outset red;
    font-size: 24px;
}

.unselectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

