/* 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: #3A6EA5;
  background-image: url(/img/bg/windows7.jpg);
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  background-position: center;
  background-attachment: fixed;
  color: black;
  font-family: Arial;
  text-align: center;
  margin: 0;
  margin-bottom: 28px;
}
#taskbar {
  background-color: rgba(220,255,255,0.5);
  backdrop-filter: blur(8px);
  position: fixed;
  z-index: 8;
  height: 28px;
  width: 100vw;
  left: 0;
  bottom: 0;
}
#time {
  background-color: rgba(255,255,255,0.5);
  height: 100%;
}
#peek {
  background-color: rgba(255,255,255,0.5);
  height: 100%;
}
#taskbutton {
  background-color: rgba(255,255,255,0.5);
  height: 100%;
}
#startword {
  display: none;
}
#starticon {
  position: relative;
  bottom: 25%;
  height: 70%;
}
#start {
  background-image: linear-gradient(white,#003C66,#03EDFF);
  width: 48px;
  height: 48px;
  border-radius: 32px;
  position: relative;
  bottom: 16px;
}
#start:hover {
  background-image: linear-gradient(white,#0C86C1,#03EDFF);
  width: 48px;
  height: 48px;
  border-radius: 32px;
  position: relative;
  bottom: 16px;
}
#start:active {
  background-image: linear-gradient(white,#0DA5DE,#03EDFF);
  width: 48px;
  height: 48px;
  border-radius: 32px;
  position: relative;
  bottom: 16;
}
button {
  background-image: linear-gradient(#ECE9D8,#FFFCED);
  border-radius: 5px;
  border: solid 1px #004DE3;
}
button:hover {
  background-image: linear-gradient(#FFFCED,#ECE9D8);
  border-radius: 5px;
  border: solid 1px #004DE3;
}
button:active {
  background-image: linear-gradient(#A5A398,#ADABA1);
  border-radius: 5px;
  border: solid 1px #004DE3;
}
#window {
  border: 3px solid #A9BFD6;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: rgba(220,255,255,0.5);
  backdrop-filter: blur(8px);
  margin: 5px auto;
  border-radius: 6px;
  overflow: auto;
}
#startmenu {
  border: 3px solid #A9BFD6;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background-color: rgba(220,255,255,0.5);
  backdrop-filter: blur(8px);
  margin: 5px auto;
  position: fixed;
  width:300px;
  height: 46.3vh;
  left: 0;
  bottom: 23px;
  text-align: left;
}
#winbar {
  background-color: #B9D1EA;
  background-image: linear-gradient(#98B4D0,#B9D1EA);
  color: white;
  text-align: left;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
}
img {
  image-rendering: pixelated;
}
 #login {
  background-image: url(/img/bg/windows7login.jpg);
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
}
a:link {
  text-decoration: none;
  color: #0000ff;
  margin: 0;
}
#overlay {
  animation: scan 0.1s 0s infinite;
  background-color: transparent;
  z-index: 9;
  pointer-events: none;
  background-image: url(/img/scanlines.png);
  opacity: 1;
}
#confetti {
  animation: scan 0.1s 0s infinite;
  background-color: transparent;
  z-index: 9;
  pointer-events: none;
  background-image: url(/img/confetti.gif);
  background-size: auto;
  background-rendering: pixelated;
  opacity: 1;
}
#anim-overlay {
  animation: overlay 3s;
  background-color: transparent;
  z-index: 9;
  pointer-events: none;
  background-image: url(/img/scanlines.png);
  opacity: 1;
}
@keyframes overlay {
  from {background-color: black;;}
  to {background-color: transparent;}
}
@keyframes scan {
  from {top: 0;;}
  to {top: 2px;}
}
table, tr, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  margin: 0 auto;
}
audio {
  width:15.63vw;
}
@keyframes warning {
  from {color: red;;}
  to {color: #ff7f7f;}
}
::-webkit-scrollbar {
  width: 17px;
}
::-webkit-scrollbar-track {
  background: #FDFDFA;
}
::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to right, #C7D6FF,#B8C9F8);
}
::-webkit-scrollbar-thumb:active {
  background-image: linear-gradient(to right, #D4E8FF,#A8CAFF);
}
.copy-left {
  display: inline-block;
  text-align: right; margin: 0;
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1); 
  filter: FlipH;
  -ms-filter: “FlipH”; 
}
#smalltext {
  font-size: 0.75em;
}
#question {
  color: #ff0000;
}
#answer {
  color: #0000ff;
}
#errorscreen {
  background-image: none; 
  background-color: #00007f; 
  color: white; 
  font-family: monospace; 
  text-align: left;
  width: 100vw;
  height: 100vh;
}
#mobilewarn {
  display: none;
  background-color: black;
  color: orangered;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
#activate {
  display: none;
}
@media only screen and (max-width: 768px) {
  #mobilewarn {
    display: block;
  }
}