@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap');

*
{
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html
{
  background-color: grey;
}

html
{
    background-image: url("/images/koala.jpg");
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body
{
    position: relative;
    padding: 20px;
    padding-top: 70px;
    font-family: 'Balsamiq Sans', sans-serif;
    background-color: white;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#loginstatus
{
  position: absolute;
  top: 10px;
  right: 10px;
}

#headerTitle
{
  position: absolute;
  display: block;
  margin: 0;
  top: 10px;
  left: 30px;
  font-size: 30px;
}

#headerTitle span
{
  font-size: 10px;
  padding-right: 4px;
  padding-left: 2px;
}

.pointclick, .clickable
{
  cursor: pointer;
}

a
{
  text-decoration: none;
  color: black;
}

.hoverable:hover 
{
  background-color: #ffff99;
}

.selected
{
  background-color: #22ee22;
}

.unselected
{
  background-color: #ffffff;
}


#tajming
{
  position: absolute;
  bottom: -12px;
  font-size: 10px;
  right: 0;
  font-weight: bold;
  color: #eeeeee;
}

h1
{
  padding-top: 0px;
}

.uppercase
{
  text-transform: uppercase;
}

.back
{
  position: absolute;
  left: 25px;
  bottom: 5px;
}

#loginstatus a
{
  text-decoration: underline;
}


.blink {
  animation: blink-animation 1s steps(15, start) infinite;
  -webkit-animation: blink-animation 1s steps(15, start) infinite;
}
@keyframes blink-animation {
  to {
      color: orange;
  }
}
@-webkit-keyframes blink-animation {
  to {
      color: red;
  }
}