/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Lora', serif;
  line-height: 1.6;
  background: black;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #222;
  padding: 15px 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-height: 60px;
  width: auto;
}

/* Content */
.content {
  background: black;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 6px 5px #ff1616;
}
.content h1, 
.content h2, 
.content h3 {
  font-family: 'Oswald', sans-serif;
  margin: 15px 0;
  color: white;
  text-align: center;
}
.content p {
    margin-bottom: 11px;
    text-align: justify;
    color: white;
    font-family: 'monospace', sans-serif;
    font-size: 15px;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 30px;
}

/* Responsif */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    text-align: center;
  }
  .logo img {
    max-height: 50px;
  }
  .content {
    padding: 15px;
  }
}
.banner, .gif {
    text-align: center;
}
@media screen and (max-width: 610px) {
    .banner img, .gif img {
        width: 100%;
    }
}
 .banner , .gif{text-align: center;}
    .gif{
        margin-bottom: 10px;
    }

    .banner img ,.gif img{
        width: 100%;
        height: 200px;
    }
.btn {
    width: 100%;
    margin-bottom: 5px;
}
.btn a {
    display: block;
    padding: 10px;
    margin: 15px 0; /* ✅ jarak atas & bawah */
    text-decoration: none;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #000000;
    font-weight: bold;
    box-shadow: 0 0 6px 5px #ff1616;
    /* border-radius: 20px; */
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.btn a:hover{
        background-color: #7f400d;
}