/* Mengatur seluruh halaman */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 100vh;
}

/* Judul utama */
h1 {
    margin-top: 60px;
    font-size: 42px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* Paragraf */
p {
    font-size: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    line-height: 1.6;
}

/* Link */
a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

a:hover {
    border-bottom: 2px solid #ffdf6e;
    color: white;
}

/* Gambar */
img {
    width: 200px;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.power {
    color: purple;
    font-size: 50px;
}


