body {
    padding: 0;
    margin: 0;
    background-color: rgb(12, 18, 56);
    scroll-behavior: smooth;
}
h1 {
    padding: 40px;
    text-align: center;
    font-size: 50px;
    font-style: italic;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(255, 255, 255);
    box-shadow: 10px black;
}
.bg {
    animation: slideDown 2s ease forwards;
    opacity: 0;
    margin: 2px auto;
    transform: translatey(-500px);     
    max-width: 600px;
    height: 500px;
}
a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.link {
    text-align: center;
    border-radius: 20px;
    border: 2px solid;
    padding: 20px;
    width: 200px;
    margin: 10px auto;
    background-color: rgb(0, 0, 0);
    transform: scale(0.95);
    transition: transform 0.5s ease;
  
}
.link:hover {
      transform: scale(1.02);
}
.link:active {
    color: blue;
}

/* Animasi */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
