/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  background-size:100%;
}
.draggable{
  position: absolute;
}
.resizeable{
  resize: both;
  overflow: auto;
}
.hidden_by_default{
  display: none;
}
/*
.centered{
  margin: auto;
  position: fixed;
}
*/
.centered{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
   
}
#mainWindow{
  height: 300px;
  width: 400px;
}
#screenFiller {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border: 15px solid orange
}
.fancy_font{
  color: purple;  
}




/* Animation Stuff */
.rotate{
  animation: rotation 5s infinite linear;  
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.colorblink{
  animation-name: color_blink;
  animation-duration: 4s;
}
@keyframes color_blink {
  0%   {background-color: red;}
  25%  {background-color: yellow;}
  50%  {background-color: blue;}
  100% {background-color: green;}
}

#test {
  /*background-color: red;*/
  border-radius: 100%;
  height: 100px;
  /*left: calc(50% - 50px);*/
  bottom: 20px;
  position: absolute;
  /*right: calc(50% - 50px);*/
  right: 20px;
  width: 100px;
  animation: bounce 1s ease-in-out infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}
@keyframes bounce {
  from {
    top: 25%;
    transform: scaleX(79.5%) scaleY(65%);
  }
  to {
    top: 55%;
  }
}  
