:root {
    --main-color: #00ff00; /* Hijau terang sebagai warna utama */
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.dropdown {
    margin-bottom: 2rem;
}

select {
    padding: 0.5rem;
    font-size: 1.2rem;
    background-color: white;
    color: black;
    border: none;
    border-radius: 0.5rem;
}

.btn-group {
    display: flex;
    justify-content: center;  /* Menengahkan tombol */
    gap: 1.5rem;
    margin: 0 auto;          /* Menyelaraskan grup tombol di tengah */
    width: 100%;             /* Menggunakan lebar penuh untuk grup tombol */
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 3rem;
    font-size: 1.8rem;
    color: black;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color);
}

.btn-group a:nth-of-type(2) {
    background-color: black;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover {
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: black;
}