

/* style.css */
body {
    scroll-behavior: smooth;
    margin-top: 60px; /* tinggi navigasi */
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fa-brands:hover{color:#0d6efd;}
.fa-solid:hover{color:#0d6efd;}
#home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#home h1 {
    font-size: 36px;
    font-weight: bold;
}

#home p {
    font-size: 18px;
}

#home button {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
}