:root {
    --scrollcolor: #fff;
    --scrollbackground: #141e27;
}
* {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
}
body {
    background: url('https://images.unsplash.com/photo-1590372648787-fa5a935c2c40?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center fixed;
    background-size: cover;
}
.title {
    font-size: 2.5rem;
    font-family: system-ui;
    line-height: 1.1;
    font-weight: 300;
    color: #fff;
    margin: 4rem auto 1rem;
    width: 85%;
    max-width: 1280px;
    text-align: center;
}
.carousel {
    width: 85%;
    max-width: 1280px;
    margin: 0 auto;
    perspective: 1000px;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel_content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: rotate 30s infinite linear;
}
.carousel_item {
    position: absolute;
    width: 250px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 0.25rem;
    transition: transform 0.5s ease;
}
@media (min-width: 460px) {
    .carousel_item {
        width: 200px;
        height: 300px;
    }
}
@media (min-width: 940px) {
    .carousel_item {
        width: 150px;
        height: 250px;
    }
}
@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
/* Position each item in a circular arrangement */
.carousel_item {
    transform: rotateY(calc(var(--item-index) * 36deg)) translateZ(600px);
}
.buttons {
    text-align: center;
    margin-top: 1rem;
}
.buttons button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 0.5rem;
    border-radius: 0.25rem;
}
.buttons button:hover {
    background-color: #ccc;
}
.footer {
    background-color: #141e27;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer {
    background-color: #141e27;
    color: #fff;
    padding: 2rem 0; /* Lebih banyak ruang padding */
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan di bagian atas footer */
}

.footer_logo img {
    width: 200px;
    margin-bottom: 1rem;
}

.footer_content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pisahkan teks hak cipta dan informasi desainer */
    align-items: center;
}

.footer p {
    margin: 0; /* Hilangkan margin atas dan bawah default */
}

.footer p:first-child {
    font-weight: bold; /* Teks hak cipta lebih tebal */
    font-size: 1.2rem; /* Ukuran font yang lebih besar */
}

.footer p:last-child {
    font-style: italic; /* Teks desainer miring */
}

