/* Atur halaman HTML 2 */
body {
  background: linear-gradient(135deg, #d1c4e9, #bbdefb); /* background estetik */
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
}

/* Heading */
h1 {
  font-size: 36px;
  color: #dddddd;
  margin-bottom: 10px;
}

/* Subjudul */
p {
  font-size: 18px;
  color: #d3d3d3;
  margin-bottom: 30px;
}

/* Daftar link */
a {
  display: block;              /* biar berbaris lurus ke bawah */
  margin: 10px auto;
  width: 200px;
  padding: 12px;
  background: #3f51b5;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Efek hover */
a:hover {
  background: #5c6bc0;
  transform: scale(1.1);
}

/* Efek klik (active) */
a:active {
  transform: scale(0.95);
  background: #283593;
}

body {
  /* Background foto penuh layar */
  background: url('coding1.png') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  text-align: center;
}