body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('../images/index/background.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-align: right;
    padding: 20px;
}

.logo img {
    width: 80px;
}

.content {
    margin-top: 50px;
}

.title {
    margin-bottom: 10px; /* Mengurangi margin bawah dari title */
}

.subtitle {
    margin-top: 0; /* Menghilangkan margin atas dari subtitle */
    margin-bottom: 50px; /* Memberikan jarak ke bawah untuk konten selanjutnya */
}

.menu-container {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    max-width: 600px;
}

.menu-item {
    text-decoration: none;
    background: url('../images/index/menu-1.png') no-repeat;
    background-size: contain;
    padding: 10px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    min-height: 60px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-item:nth-child(2) {
    background-image: url('../images/index/menu-2.png');
}

.menu-item:nth-child(3) {
    background-image: url('../images/index/menu-3.png');
}

.menu-item:nth-child(4) {
    background-image: url('../images/index/menu-4.png');
}

.menu-item:hover {
    transform: scale(1.02);
}