*,
html {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(assets/welcome.jpg);
    background-size: cover;
    /* Menyesuaikan gambar agar memenuhi layar */
    background-position: center;
    /* Memastikan gambar berada di tengah */
    background-repeat: no-repeat;
    /* Mencegah gambar diulang */
    height: 100vh;
    /* Mengatur tinggi body agar penuh satu layar */
    margin: 0;
    /* Menghilangkan margin default */
}

.container {
    display: flex;
    flex-direction: column;
    /* Susun elemen secara vertikal */
    align-items: center;
    /* Pusatkan secara horizontal */
    justify-content: center;
    /* Pusatkan secara vertikal jika perlu */
    height: 100vh;
    /* Sesuaikan tinggi layar */
    text-align: center;
    /* Pusatkan teks */
}

.welcomeLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -110%);
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px #FFFB02) drop-shadow(0 0 20px #FFFB02);
    /* Efek neon biru */
}

.welcomeTitle {
    margin-top: 130px;
    /* Beri jarak sedikit dari logo */
    font-size: 20px;
    /* Sesuaikan ukuran teks */
    color: white;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.welcomeDesc {
    margin-top: 5px;
    /* Beri jarak sedikit dari logo */
    margin-bottom: 35px;
    font-size: 15px;
    /* Sesuaikan ukuran teks */
    color: white;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.btn {
    margin-right: 5px;
    margin-left: 5px;
    text-decoration: none;
    background-color: #006634;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    border: 2px solid #FFFB02;
    /* Warna outline */
}

.btn:hover {
    background-color: #008846;
    box-shadow: 0 0 15px #FFFB02;
};