* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto";
  margin: 0 auto;
  padding: 0 auto;
}

/* ----------- TITLE ---------- */
#title {
  position: fixed;
  font-size: 100px;
  font-weight: 1000;
  line-height: 200px;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

h1 {
  margin: 0 auto;
  text-align: right;
}

#navigation {
  margin-top: 5px;
  margin-left: 5px;
}

#nav {
  margin-left: 5px;
}

/* -------- Buttons decoration ---------- */
.button {
  color: black;
  padding: 10px 15px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  border: 1px solid #000;
  box-shadow: 5px 5px #000;
}

button:focus {
  outline:0;
  color: blue;
  box-shadow: 5px 5px blue;
  border: 1px solid blue;
}

/* ------- Loader -------- */
#loader {
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;

  border: 1px solid blue;
  background-color: white;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  animation: spin 2s infinite linear;
  box-shadow: 5px 5px blue;
  display: none;

  /* -- alternative -- */
  /* box-shadow: 20px 20px 40px 10px blue inset;
  border: 10px solid white; */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ------- Notification -------- */
.notification {
  margin: 10px;
  padding: 10px;
  border: 1px solid black;
  width: 18.5%;
  height: 30%;
  background-color: white;
  box-shadow: 5px 5px #000;
  display: inline-block;
}

.notification:hover {
  border: 1px solid blue;
  box-shadow: 5px 5px blue;
  color: blue;
}

.message {
  width: 100%;
  height: 100%;
  overflow-wrap: break-word;
  position: relative;
}

.packP {
  margin-top: 0;
  color: gray;
  font-size: 12px;
}

.textP {
  height: 40%;
  overflow: auto;
}

.dateP {
  position: absolute;
  bottom: 0;
  font-size: 12px;
}
