body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    
}

.poster {
    width: 80%;
    margin: 0 auto;
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
    text-align: center;
    color: #000;
}
.poster img{
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.poster:hover img{
    transform: rotate(5deg);
}

.poster img{
    transform: rotate(0deg);
}
.poster h1 {
    text-align: center;
    color: #ffffff;
    transition: transform 0.5s ease;
}

.poster p {
    color: #ffffff;
    transition: transform 0.5s ease;
}

.poster p:first-child {
    margin-top: 0;
}

.poster p:last-child {
    margin-bottom: 0;
}

.poster:hover h1, .poster:hover p {
    transform: translateY(-10px);
}

.container {
    box-shadow: 0 0 20px rgb(255, 234, 0); /* Tambahkan shading pada container */
    padding: 20px;
    border-radius: 10px;
    background-color: #5a616f;
    border: 1px solid #5a616f; /* Tambahkan border untuk membuatnya seperti box */
}

.container p {
    color: #ffffff;
}

/* Tambahkan CSS untuk marquee behavior */
marquee {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background-color: #472121;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
