
div.sticky {
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: #cae8ca;
  border: 2px solid #4CAF50;
  text-align: center;
}

div.static {
  position: static;
  border: 3px solid #ff8707;
}

.text {
  position: absolute;
  top: 15%;
  width: 55%;
  text-align: center;
  font-size: 12px;
  max-width: 900px;
  
}

div.relative {
  position: relative;
  left: 20px;
}

.fixed {
  position: fixed;
  bottom: 10;
  right: 20;
  background: #999898;
  padding: 8px 20px;
  border-radius:10px;
  font-size: 20px;
}

