@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap');
/*
font-family: 'Roboto', sans-serif;
*/

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

body, html {
    overflow-x: hidden;
    overflow-y: hidden;
}
body{
    background: radial-gradient(#ffffff 0%, #c9c9c9 100%) no-repeat fixed center;
}
.center{
    margin:auto;
    width: 80%;
    padding: 10px;
}
.headder{
    text-align: center;
    padding-top: 30px;
    font-family: "Roboto", regular;
    font-weight:700;
}
.btn {
    box-sizing: border-box;
    appearance: none;
    background-color: transparent;
    border: 2px solid black;
    border-radius: 0.6em;
    color: black;
    cursor: pointer;
    display: flex;
    align-self: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin: 40px;
    padding: 1.2em 2.8em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.btn:hover, .btn:focus {
    color: #fff;
    outline: 0;
}
.start {
    margin:0 auto;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.start:hover {
    box-shadow: 0 0 40px 40px black inset;
}
.skip{
    float: right;
    position: fixed;
    bottom: 0;
    font-family: "Roboto", regular;
}

.letter-box{
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  border: 5px outset black;
  background-color: white;
  text-align: center;
  width: 40%;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 32pt;

}

.countdown_timer{
  color: #f00;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}


#break_screen{
  display: none;
}

#game_screen{
  display: block;
  height: 200px;
}

#timer{
  display: block;
}

#end_screen{
  display:none;
}

#letter{
  background-color: inherit;
  font-size: 100pt;
}

#innerbox{
 width:250px;
 max-width:250px;
 display: inline-block;
}

#myProgress {
  width: 100%;

}

#myBar{
  width: 100%;
  height: 30px;
  background-color: #000;
}

#letterTimeBar{
  width: 100%;
  height: 10px;
  background-color: grey;
}

#debug{
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

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