body {
  background-color: black;
  color: white;
  font-style: oblique;
  overflow: hidden;

  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  animation: cinematicMovement 120s linear infinite alternate;
}

@keyframes cinematicMovement {
  0% {
    background-position: 1% 2%;
  }

  50% {
    background-position: 30% 80%;
  }

  100% {
    background-position: 2% 1%;
  }
}

.info-container {
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;

  top: 0;
  left: 0;
}

.page-name {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, yellow 0%, yellow 25%, green 75%, green 100%);
  border-image-slice: 1;
}

.page-description {
  position: relative;
  top: 100px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/*******************\
* FLOATING ELEMENT  *
*       CSS         *
\*******************/
#floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
}

button {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75em 2em;
  margin: 0.5em 1em;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(30,60,114,0.2);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.3s;
  outline: none;
}

button:hover, button:focus {
  background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(42,82,152,0.3);
}

.app-shortcut-btn {
  position: absolute;
  margin: 0;
  background: url('background_smallres.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 16px rgba(30,60,114,0.2);
  color: #fff;
  border: 2.5px solid #000;
  border-radius: 12px;
  padding: 0.75em 2em;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.3s;
  outline: none;
  /* Overlay for readability */
  position: absolute;
  overflow: hidden;
}
.app-shortcut-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,60,114,0.5);
  mix-blend-mode: multiply;
  z-index: 0;
  border-radius: 12px;
}
.app-shortcut-btn span {
  position: relative;
  z-index: 1;
}
.app-shortcut-btn:hover, .app-shortcut-btn:focus {
  background: url('background_smallres.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1.2) saturate(1.2);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(42,82,152,0.3);
}