
html, body { height: 100%; }
body {
  margin: 0;
  background: #f6f7f8;
  color: #0f172a;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 12px;
}

.wishBody {
  display: grid;
  grid-template-rows: 70px 1fr;
  height: 100%;
}

.topBar {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17,24,39,.06);
  display: flex;
}

.topBar-group {
  display: flex;
  width: 100%;
  height: 40px;
}

.topBar-list {
  flex: 1;             
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  background: #fff;
  border: 0 10px 10px 0 solid #e5e7eb;
  box-shadow: -1px 3px 10px rgba(0,0,0,.05);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .06s ease;
}

.topBar-list:hover {
  background: #f8fafc;
  border-color: #d1d5db;
  box-shadow:0 2px 6px rgba(0,0,0,.25);
}

.content {
  height: 100%;
}
.floatStage { 
  position: relative; 
  top: 70px;
  height: 100%;
}

.floatItem {
  position: absolute;
  max-width: 500px;
  padding: 20px;
  transform-origin: center;
  border-radius: 15px;
  text-align: center;
  background-color: rgb(255,255,255,0.5);
}

.floatItem:hover {
  background-color: rgba(255, 255, 255,1);
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  border-radius: 15px;
  z-index: 100;
  box-shadow:0 2px 6px rgba(0,0,0,.08);

}

.floatItem img {
  width: 100%;
  height: auto;
  z-index: 0;
  max-width: 300px;
  border-radius: 12px;
}


/* styling items */
#title  {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
  background-color: #0066CC;
  
}
#title:hover  {
  color: white;
  background-color: #0057ad;
  transform: translateY(-10px);
}

#description {
  font-size: 12px;
  font-weight: 400;
  color: #374151;
}

#content {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

#linkButton{
  background-color: #0066CC;
  width: 100px;
  font-weight: 400;
  border-radius: 15px;
  color: white;
  text-decoration: none;
  padding: 8px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

#linkButton:hover{
  color: white;
  font-weight: 500;
  background-color: #0057ad;
  transform: translateY(-10px);
}


