/* Font & Layout dasar */
body {
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.3s, color 0.3s;
  background-image: url('../index-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}

/* Header */
header {
  display: flex;
  text-align: center;
  align-items: center;
  padding: 15px 30px;
  background-color: #ffffff;
  border-bottom: none
}

/* Tombol Mode */
button {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 8px 14px;
  margin-top: 1em;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

button:hover {
  background-color: #555;
}

/* Tombol kembali */
.back-button {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  position: fixed;
  margin-top: 1em;
  right: 5px;
  z-index: 1000;
}
  
/* Hover effect */
.back-button:hover {
  background-color: #555;
}

h1 {
  margin-bottom: 2em; /* Atau margin-bottom: 40px; */
}

/* Artikel */
main {
  padding: 30px;
}

.article-list {
  list-style-type: none;
  padding: 0;
}

.article-list li {
  margin: 10px 0;
}

.article-list a {
  color: inherit;
  text-decoration: none;
}

.article-list a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #ffffff;
  border-top: none;
  transition: background-color: 0,3s;
}

/*Copyright*/
.copyright {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
}

/* Mode Gelap */
.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode header,
.dark-mode footer {
  background-color: #121212;
  border-color: #333;
}

.dark-mode button {
  background-color: ##ffffff54;
  color: ##ffffff;
}

.dark-mode .back-button {
  background-color: #ffffff54;
  color: #ffffff;
}