body {
    font-family: Arial, sans-serif;
    background-color: hsl(113, 56%, 52%);
    display: flex;
    justify-content:center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.flex-container{

    background-color: hsl(113, 56%, 52%);
  width: 500px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;


}

.welcome {
    font-size: 110%;
   
   
}

.slip {

    
    border: 10px;
    padding: 12px 24px;
  border-radius: 8px;
  
  /* Warna */
  background-color: #4CAF50; /* Warna hijau */
  color: rgb(250, 249, 246);
  
  /* Teks */
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  
  /* Border */
  border: none;
  
  /* Efek */
  cursor: pointer;
  transition: all 0.3s ease;
  
  /* Tampilan */
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.slip:hover {
    background-color: #45a049; /* Warna lebih gelap saat hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
  }

  .slip:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .icon-slip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }