body {
  display: flex;
  flex-direction: column;

  font-family: "Space Mono", monospace;

  background-image: url(Background.svg);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  padding: 0px;
  margin: 0px;

  overflow-y: hidden;
}

/*******************************************************/

.Loading {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);

  opacity: 1;
  transition: opacity 2s ease;
  pointer-events: auto;
}

.Loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.Loading h1 {
  font-size: 100px;
  color: whitesmoke;

  margin: 0px;
}

.Loading h2 {
  margin: 0px;

  font-size: 25px;
  font-weight: normal;
  color: whitesmoke;
}

/*******************************************************/

.Header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  margin: auto;
  margin-top: 20px;

  width: 98%;
  height: 80px;

  opacity: 100%;

  border-radius: 10px;
  background-color: rgb(250, 250, 250, 0.05);
  backdrop-filter: blur(5px);
  border: 2px solid rgb(250, 250, 250, 0.9);
}

.Header img {
  height: 60px;
  align-items: left;

  margin-top: auto;
  margin-bottom: auto;

  margin-left: 10px;
}

.Time {
  align-items: center;

  width: max-content;
  height: min-content;

  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;

  padding-left: 10px;
  padding-right: 10px;

  color: black;

  border-radius: 10px;
  border: 2px solid rgb(250, 250, 250, 0.9);

  transition: 0.2s;
}

.Time:hover {
  scale: calc(1.1);

  box-shadow: 0 0 10px white;
  background-color: rgb(250, 250, 250, 0.2);
  backdrop-filter: blur(5px);
}

.Time h1 {
  margin: 0px;
  padding: 0px;

  font-size: 20px;

  color: whitesmoke;
}

/**************************************************/
.FooterLock {
  position: fixed;
  bottom: 0;
  width: 100%;

  margin-left: auto;
  margin-right: auto;

  transition: 0.2s;

  margin-bottom: -60px;
  padding-top: 60px;

  overflow-y: visible;
}

.FooterLock:hover>.Footer {
  margin-bottom: 60px;
}

.Footer {
  transition: 0.2s;

  display: flex;
  flex-direction: row;

  align-items: center;

  margin-left: auto;
  margin-right: auto;

  width: 98%;
  height: 80px;

  opacity: 100%;

  border-radius: 10px;
  background-color: rgb(250, 250, 250, 0.05);
  backdrop-filter: blur(5px);
  border: 2px solid rgb(250, 250, 250, 0.9);
}

/**************************************************/

.App {
  grid-template-columns: 3, 1, 1;

  width: auto;
  height: min-content;
}

#WelcomeApp,
#CalculatorApp {
  margin: 20px;
  padding: 0px;

  display: flex;

  align-items: center;

  overflow: hidden;

  height: 50px;
  width: 50px;

  transition: 0.2s;
}

#WelcomeApp:hover,
#CalculatorApp:hover,
button:hover {
  scale: calc(1.1);
  box-shadow: 0 0 10px whitesmoke;
}

button {
  transition: 0.2s;
}

#MinimizeButton {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;

  margin: 2px;

  background-color: rgb(250, 250, 250, 0.05);
  backdrop-filter: blur(5px);
  border: 2px solid rgb(250, 250, 250, 0.9);
}

#CloseButton {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;

  margin: 2px;

  background-color: rgb(250, 250, 250, 0.05);
  backdrop-filter: blur(5px);
  border: 2px solid rgb(250, 250, 250, 0.9);
}

#MaximizeButton {
  margin: 2px;

  background-color: rgb(250, 250, 250, 0.05);
  backdrop-filter: blur(5px);
  border: 2px solid rgb(250, 250, 250, 0.9);
}

#CalculatorApp img {
  margin: auto;

  height: 40px;
  width: auto;
}

#WelcomeApp h1 {
  margin: auto;
}

/**************************************************/
#WelcomeTab,
#CalculatorTab {
  margin-top: 120px;

  flex-direction: column;

  position: absolute;
  z-index: 1;

  width: auto;
  height: min-content;

  border-radius: 10px;
  border: 2px solid rgb(250, 250, 250, 0.9);
  backdrop-filter: blur(5px);

  text-align: center;
}

#TabHeader {
  display: flex;
  flex-direction: row;

  padding: 5px;
  cursor: pointer;
  z-index: 2;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  backdrop-filter: blur(5px);

  background-color: rgb(250, 250, 250, 0.2);
  border-bottom: 2px solid rgb(250, 250, 250, 0.9);
}

#WelcomeTabBody h1 {
  color: whitesmoke;
}

#TabHeader button {
  align-self: right;
}

#WelcomeTabBody {
  color: white;
  padding: 10px;
}