
@keyframes melayang {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(-8px);
  }
}
@keyframes ulangi {
  100% {
    transform: translateY(-8px);
  }
}
.melayang {
  margin: 15px 0 0 15px;
}
.melayang:hover {
  animation-name: melayang, ulangi;
  animation-duration: 0.3s, 1.5s;
  animation-delay: 0s, 0.3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
  box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5);
}


.button {
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #ffffff;
  background-color: #04AA6D;
  border: none;
  border-radius: 10px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #1310e0}
.button:hover {color: #ffffff;}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


.footer {
  color: #bebebe;
  background-color: blue;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 30px; /* Set the fixed height of the footer here */
  line-height: 30px; /* Vertically center the text there */
  
}



.notification {
  
  text-decoration: none;
  padding: 15px 26px;
  position: relative;
  display: inline-block;
  
}

.notification:hover {
  background: blue;
}

.notification .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  border-radius: 50%;
  background: red;
  color: white;
}


.logine {
        
    float: right;
    margin: 5px;
    border-radius: 50%;


    }

.byitsenzo {
        
    font-style: italic;
    }


.layar1 {
  font-size: 28px;
  text-align: center;
  
  color: blue;
  background-color: #04AA6D;
  }