main {
    background-size: cover;
    background-image: url("../img/7a2def94f8ad6026660ee6d063e541479773f350.jpg");
    max-width: 1440px;
    grid-column: 1/-1;
    grid-row: 1/-1;
    height: 100%;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 100px);
}

#synopsis_text {
    grid-column: 3/7;
    grid-row: 6/12;
}

p,
h2,
h1 {
    color: white;
}

#table {
    grid-row-start: 6;
    grid-column: 8/11;
}

table td {
    padding: 10px 2em;
    vertical-align: text-top;
}

#header-txt {
    justify-self: center;
    margin: 15% 0;

    grid-column: 1/-1;
    grid-row: 1/2;
}

#header-txt h1 {
    color: white;
}