@font-face 
{
    font-family: 'Led';
    src: url('digital-7-mono.eot');
    src: url('digital-7-mono.eot?#iefix') format('embedded-opentype'),
         url('digital-7-mono.ttf') format('truetype');
}

@font-face
{
    font-family: 'TimeBomb';
    src: url('TickingTimebombBB.ttf') format('truetype');
}

@font-face
{
    font-family: 'Repetition';
    src: url('repetition.ttf') format('truetype');
}

h1, h2, h3
{
    text-align: center;
}

.square-button
{
    background-color: dodgerblue; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.red
{
    background-color: tomato;
}

.button 
{
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: dodgerblue;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button span
{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after
{
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span 
{
  padding-right: 25px;
}

.button:hover span:after 
{
  opacity: 1;
  right: 0;
}

.button:active 
{
  background-color: dodgerblue;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.centerme
{
      margin: auto;
      margin-top:10px;
}

.center 
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

body
{
    font-family: "Lato", sans-serif;
    margin: 0;
    min-width: 250px;
    padding:5px;
}

body, html, #wrapper 
{
    width: 100%; height: 100%; display: grid;
}

#wrapper 
{
    display: table;
}

#main
{
    display: table-cell; vertical-align: middle; text-align:center;
}

/* Remove margins and padding from the list */
ul
{
    margin: 0;
    padding: 0;
}

/* Style the list items */
ul li
{
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    list-style-type: none;
    background: #eee;
    font-size: 18px;
    transition: 0.2s;
    /* make the list items unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Set all odd list items to a different color (zebra-stripes) */
ul li:nth-child(odd) 
{
    background: #f9f9f9;
}

/* Darker background-color on hover */
ul li:hover 
{
    background: #ddd;
}

/* When clicked on, add a background color and strike out text */
ul li.checked 
{
    background: #888;
    color: #fff;
    text-decoration: line-through;
}

/* Add a "checked" mark when clicked on */
ul li.checked::before 
{
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
}

/* Style the close button */
.close 
{
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
}

.close:hover 
{
    background-color: #f44336;
    color: white;
}

/* Style the header */
.header 
{
    background-color: #f44336;
    padding: 30px 40px;
    color: white;
    text-align: center;
}

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

/* Style the input */
/*input {*/
/*    margin: 0;*/
/*    border: none;*/
/*    border-radius: 0;*/
/*    width: 75%;*/
/*    padding: 10px;*/
/*    float: left;*/
/*    font-size: 16px;*/
/*}*/

/* Style the "Add" button */
.addBtn 
{
    padding: 10px;
    width: 25%;
    background: #d9d9d9;
    color: #555;
    float: left;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
}

.addBtn:hover 
{
    background-color: #bbb;
}

* 
{
    box-sizing: border-box;
}

#myInput
{
    background-color: #f44336;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

#myTable
{
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 18px;
}

#myTable th, #myTable td
{
    text-align: left;
    padding: 12px;
}

#myTable tr 
{
    border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover 
{
    background-color: lightgrey;
}

input[type="file"] 
{
    width:700px;
    padding: 20px 150px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px #999;
}

input[type="file"]:active 
{
    background-color: #3e8e41;
    box-shadow: 0 1px #666;
    transform: translateY(4px);
}