:root {
    --red: #DA3359;
    --text: #ffffff;
    --background: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

#poster {
    width: 100%;
    max-width: 450px;
    margin-bottom: 24px;
}

h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.notice {
    color: var(--red);
    font-weight: bold;
}
