/*--------GLOBAL--------*/
* {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    color: black;
}

body h1 {
    padding-top: 2%;
    padding-bottom: 2%;
    text-align: center;
    font-size: 250%;
}

/*--------NAVIGATION--------*/
nav {
    background-color: black;
    padding: 0.5% 5% 0.5% 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 100px;
    height: 100px;
}

#navLinks {
    display: flex;
    padding-left: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: x-large;
    margin-left: 20px;
    margin-right: 0;
}

nav a:hover {
    text-decoration: underline;
}

/*--------BODY--------*/

.homePageImage {
    width: 636px;
    height: 424px;
    float: left;
    border: 2px solid black;
    margin: 5% 5% 0% 5%;
}

#aboutCR {
    margin-top: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
}

#aboutCR h1 {
    text-align: center;
    padding: 0 2%;
    margin-bottom: 20px;
}

#aboutCR p {
    text-align: center;
    font-size: 20px;
    line-height: 1.8; /* More space between lines */
    margin: 0% 2.5% 0% 0%; /* More space between paragraphs */
}

/*--------SHOW & HOME ROW--------*/
.row {
    background-color: black;
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border: 2px solid black;
    border-radius: 15px;
    padding: 20px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row iframe {
    border: 2px solid black;
    float: left;
}

.row p {
    padding-top: 5%;
}

/*--------SHOW & HOME COLUMN--------*/
.column {
    color: white;
    width: 580px;
    float: right;
    text-align: left;
    padding-left: 20px;
}

.column h2 {
    margin-top: 0;
}

.column button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
}

/*------NEWS------*/
#newsImages {
    float: left;
    width: 385px;
    height: 216px;
    margin-left: 3%;
}

/*------CAST Row------*/
.castRow {
    max-width: 76%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.castRow:after {
    content: "";
    display: table;
    clear: both;
}

/*------CAST Column------*/
.castColumn {
    background-color: black;
    color: white;
    width: 345px;
    min-height: 600px; /* Makes each Card the same height */
    max-height: 600px; /* Makes each Card the same height */
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    border: 2px solid black;
    border-radius: 15px;
    padding: 20px;
    float: left;
}

.castColumn img {
    width: 300px;
    height: 300px;
}

/*--------FOOTER--------*/
footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    padding: 40px 20px 20px 50px;
    background-color: black;
    color: white;
    text-align: center;
}

footer div {
    width: 30.5%;
    float: left;
    margin-left: 20px;
    margin-right: 20px;
}

footer:after {
    content: "";
    display: table;
    clear: both;
}

footer h3 {
    padding-bottom: 3%;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    clear: both;
    text-align: center;
    padding-top: 20px;
}