/* File: style.css untuk index.php */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f1faee;
    animation: fadeInDown 1s ease;
}

.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 1s ease;
}

a.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

a.btn:hover {
    background: #f1faee;
    color: #1d3557;
    transform: translateY(-5px) scale(1.05);
}

/* Animasi sederhana */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
