body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    margin: auto;
}

header h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.arrow {
    font-size: 2em;
    color: #ff4500;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.right-arrow {
    transform: rotate(0deg); /* Mengarah ke kiri */
    animation-delay: 0.2s;
}

.left-arrow {
    transform: rotate(0deg); /* Mengarah ke kanan */
    animation-delay: 0.4s;
}

.button-link {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.button-link:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.product-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;               
}
header h1 {
    font-size: 2em;
    color: #fff; /* Mengatur warna teks menjadi putih */
    margin-bottom: 20px;
}

body
{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://i.pinimg.com/736x/a0/37/18/a03718b2f8bb93f22bc799b58ffc33de.jpg') no-repeat center center fixed; /* Gambar di tengah */
    background-size: cover; /* Gambar menyesuaikan ukuran layar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #fff; /* Agar teks terlihat jelas */
}