@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap");

@import "pop_up.css";
@import "log_in.css";
@import "coffre.css";
@import "musique.css";
@import "fichiers.css";
@import "messages.css";
@import "fin.css";


:root {
  --color-background: #dedede;
  --color-bar: #189dfd;
  --color-button: #d9d9d9;

  --color-shadow: #86eb0a;
  --color-light: #86c6f3;
  --color-text: black;
  --color-text-light: #ffffff;
}

body.Main-Navigation {
  background-image: url(../assets/fond_ecran_windows_xp.jpg);
  background-size: cover;
  min-height: 100vh;
  margin: 0;
  padding: 0;

}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, #dedede, #999999);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.icon {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  transition: transform 0.3s;
  margin-bottom: 2px;
}

.icon:hover {
  transform: scale(1.1);
}

.datetime {
  position: fixed;
  bottom: 4px;
  right: 10px;
  color: white;
  font-family: "Google Sans Code", monospace;
  text-align: right;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  z-index: 100;
}

.time {
  font-size: 1.2rem;
  font-weight: bold;
}

.date {
  font-size: 0.9rem;
  margin-top: 2px;
}
