body {
  background-image: url("images/wallpaper.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  color: #000000;
  font-family: Calibri;
  font-size: 20px;
  margin: 4px;
}

a:link {
  text-decoration: none;
}

.windowTitle {
  color: rgb(0, 0, 0);
  margin-top: 8px;
  margin-left: 5px;
  text-shadow: 2px 2px 10px white, 2px 2px 10px white;
}

.evilTaskbar {
  height: 30px;
  width: 100%;
  position: fixed;
  bottom: 0px;
}

.taskbar {
  background: linear-gradient(180deg,rgba(180, 181, 181, 0.7) 0%, rgba(72, 73, 74, 0.7) 50%, rgba(27, 29, 30, 0.7) 51%, rgba(19, 20, 21, 0.7) 100%);
  height: 30px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  backdrop-filter: blur(5px);
}

.startButton {
  display: none;
}

.startButton + label{
  background: url("images/startbutton/start.png") no-repeat;
  top: -10px;
  position: absolute;
  z-index: 2;
}

.startButton:checked + label{
  background: url("images/startbutton/pressed.png") no-repeat;
  top: -10px;
  position: absolute;
  z-index: 2;
}

.startButtonImage{
  transition: 0.5s;
}

#startMenu {
  display: none;
  height: 508px;
  width: 508px;
  background: linear-gradient(45deg, rgba(66, 66, 66, 0.5), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(8px);
  box-shadow: 5px 5px 50px;
  border-radius: 8px;
  position: absolute;
  bottom: 30px;
  border-color: rgba(220, 249, 250, 0.5);
  border-style: solid;
  border-width: 1px;
  transition: 0.3s;
  z-index: 1;
}

#startButton:checked ~ #startMenu {
  display: block;
}

.startAppsList {
  height: 498px;
  width: 250px;
  background-color: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.7);
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  position: absolute;
  bottom: 4px;
  left: 4px;
  align-self: center;
}

.startProgramLinks {
  height: 498px;
  width: 250px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 4px;
  right: 4px;
  align-self: center;
}

.appButtons {
  display: flex;
  border: none;
  background-color: white;
  border-radius: 4px;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 40px;
  font-family: Calibri;
  font-size: medium;
  transition: 0.5s;
}

.appButtons:hover {
  border: #a7e0f8;
  border-width: 1px;
  background: linear-gradient(#e1f6ff, #b9e4fa);
  border-style: solid;
}

.programButtons {
  display: flex;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 4px;
  align-items: center;
  text-align: center;
  width: 90%;
  margin: 5%;
  height: 30px;
  font-family: Calibri;
  color: white;
  transition: 0.5s;
}

.programButtons:hover {
  background: linear-gradient(180deg,#B6B8BA 0%, #6A6C6E 50%, #333639 51%, #585C5F);
  border-color: #7F8184;
  border-style: solid;
  border-width: 1px;
}

.profilePic {
  top: -50px;
  width: 90px;
  height: 90px;
  position: relative;
}