/* general */
        
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: white;
}
        
p {
    margin-bottom: 5px;
    text-align: center;
}
        
/* header/nav */
        
header {
    border-bottom: 2px solid #fff;
}
        
ul {
    display: flex;
    justify-content: end;
    list-style-type: none;
    margin-top: 0;
    margin-right: 10px;
    margin-bottom: 50px;
}
        
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
}
        
li {
    padding: 20px;
}
        
.logo {
    display: flex;
    width: 20%;
    height: auto;
    float: left;
    padding: 0;
}
        
.border {
    font-size: 2em;
}
        
/* hero section */
        
.Hero {
    background-image:url(../images/indy-hero-movie-poster.jpg);
    height: 1000px;
    width: 700px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 30px;
}
        
.Heading {
    background-color: chocolate;
    color: black;
    text-align: center;
    display: grid;
    
}
        
.Button {
    text-align: center;
    background-color: darkred;
    display: inline-block;
    border-width: 10px;
    border-radius: 5px;
    padding: 5px;
    margin: auto;
    margin-left: 620px;
    margin-top: 15px;


}
        
/* about/cast section */
        
h2 {
    text-align: center;
    margin-top: 50px;
}
        
h3,h4 {
    margin-bottom: 1px;
}
        
.aboutimg {
    width: 30%;
    height: 30%;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 100px;
    object-fit: contain;
}
        
.Cast {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-content: space-between;

}
        
.Cast div {
    text-align: center;
    background-color: chocolate;
    display: grid;
    margin-top: 20px;
    margin-bottom: 50px;
    margin-left: 90px;
    margin-right: 90px;
    border-radius: 5px;
    position: relative;
}
        
.castimg {
    width: 50%;
    height: auto;
    margin: auto;
    border-radius: 5px;
}
        
/* links */
        
a:link {
    color: aliceblue;
    text-decoration: none;
    font-size: 1.5em;
}
        
a:visited {
    color: aliceblue;
}
        
a:hover {
    color: blanchedalmond;
    text-decoration: underline;
}
        
a:active {
    color: darkblue;
}
        
/* footer */
        
footer {
    display: flex;
    justify-content: end;
    list-style-type: none;
    margin-top: 25px;
}
        
.date {
    margin-bottom: 5px;
    margin-right: 5px;
}