.container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.wrapper {
    background: rgb(255, 255, 255);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 40px;
    max-width: 700px;
    width: 100%;
}

.film h1, .film h2, .film h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
}

.film h1 {
    font-size: 2.2em;
    color: #2a5298;
    text-align: center;
}

.film h2 {
    font-size: 1.5em;
    color: #1e3c72;
    margin-top: 32px;
}

.film h3 {
    font-size: 1.2em;
    color: #3a7bd5;
}

.film p {
    margin-bottom: 18px;
    line-height: 1.5;
}

.film img {
    display: block;
    margin: 18px auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    max-width: 100%;
    height: auto;
}
button {
    background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    text-decoration: wavy none;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(58,123,213,0.12);
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    transform: translateY(-2px) scale(1.04);
}

button a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.5px;
    display: inline-block;
}
header {
    display: flex;
}

.navigation-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    margin-right: 40px;

}
