body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
    width: 100vw;
    min-height: 90vh;
}

.container { 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.poster-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0px 2px 4px rgba(0, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    max-width: 80%;
    min-width: 80%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poster-card h2 {
    font-size: 2rem;
    text-align: center;
}

.poster-card p {
    color: #4b5563;
    margin-bottom: 5px;
}

.poster-card a {
    color: #3b82f6;
    font-weight: bold;
    text-decoration: none;
}

.poster-card a:hover {
    text-decoration: underline;
}