* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #0078d4;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.konten {
    margin-left: 50px;
    text-align: center;
    padding-top: 20px;
}
.konten h1 {
    font-size: 96px;
    font-style: italic;
    color: white;
    font-family: "Madimi One", sans-serif;
}
.konten p {
    font-family: "livvic";
    color: white;
    font-size: 32px;
}
.konten button {
    padding: 10px 50px;
    font-size: 36px; 
    font-family: "livvic";
    margin-top: 20px;
    border-radius: 25px;
    border: none;
    background-color: #ffa420;
    color: white;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgb(8, 8, 8);
}
.konten button:hover {
    transform: translateY(-5px) scale(1.05);
}
/* Container utama untuk icon */
.icon {
    position: relative;
    width: 700px; /* Samakan dengan lebar background .layer */
    height: 100vh;
}

/* Background kertas robek tetap di paling belakang */
.layer {
    position: absolute;
    z-index: -1;
    height: 100%;
    right: 0;
    width: 700px;
    object-fit: cover;
}

/* Bungkus semua icon kecil agar bisa diatur bebas */
.layer-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

/* Reset semua kontainer icon agar tidak mengganggu posisi */
.icon-1, .icon-2 {
    display: block; 
    position: static;
}

.layer-2 img {
    position: absolute; /* Kunci utama agar bisa menumpuk */
    transition: transform 0.3s ease; /* Bonus: efek halus saat hover */
}

/* --- MENGATUR POSISI SATU PER SATU --- */

/* Kertas Biru Utama (Tengah) */
.kertas {
    width: 320px;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 5;
}

/* Pesawat Kertas (Mepet ke kanan kertas utama) */
.pesawat {
    width: 220px;
    top: 48%;
    right: 80px;
    transform: translateY(-50%) rotate(10deg);
    z-index: 10; /* Biar di depan kertas */
}

/* Kertas Hitam Atas */
.icon-2 .kertas2:first-child {
    width: 110px;
    top: 20%;
    right: 180px;
    transform: rotate(15deg);
}

/* Kertas Hitam Bawah */
.icon-2 .kertas2:last-child {
    width: 110px;
    bottom: 20%;
    right: 200px;
    transform: rotate(-15deg);
}

/* Garis-garis dekorasi */
.icon-1 .garis:first-child {
    position: relative;
    width: 80px;
    top: 200px;
    left: 40%;
    transform: rotate(-20deg);
}

.icon-1 .garis:last-child {
    width: 80px;
    bottom: 30%;
    left: 40%;
    transform: rotate(10deg);
}
