/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Menu lebih ke atas */
    height: 100vh;
    background: linear-gradient(to right, #00c6ff, #0072ff); /* Gradient background */
    color: #fff;
    padding-top: 50px; /* Memberi jarak atas untuk menu */
}

.container {
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #ffffff10;
    padding: 30px; /* Meningkatkan padding */
    width: 90%;
    max-width: 500px; /* Lebih besar */
    backdrop-filter: blur(10px);
}

/* Header Styles */
.header h1 {
    font-size: 3.5rem; /* Sedikit lebih kecil untuk proporsi */
    margin-bottom: 30px; /* Menambah jarak dengan menu */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.menu .button {
    display: block;
    margin: 15px 0; /* Lebih banyak jarak antar tombol */
    padding: 20px 25px; /* Lebih besar */
    font-size: 1.5rem; /* Font lebih besar */
    font-weight: 500; /* Sedang */
    color: #fff;
    text-decoration: none;
    background: #0993c3;
    border-radius: 30px; /* Lebih bulat */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.menu .button:hover {
    transform: scale(1.1); /* Hover efek lebih besar */
    background: #0af9eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem; /* Font header responsif */
    }
    .menu .button {
        font-size: 1.2rem; /* Font tombol responsif */
        padding: 15px 20px; /* Padding tombol responsif */
    }
}
