body {
    text-align: center;
    background-image: url('img/popcorn_bucket_spill.png'), url('img/popcorn_bucket_spill.png');
    background-repeat: no-repeat, no-repeat;
    background-position: left, right;
    background-size: clamp(12.5rem, 20%, 24.5rem) auto;
    background-attachment: fixed;
    margin: 0;
}

.content {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.content > main {
    flex: 1;
}

.column {
    display: inline-block;
    width: min(14rem, 95%);
    text-align: left;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

h1{
    padding: 0rem;
    font-size: clamp(1.65rem, 0.5rem + 1vw, 3rem);
}

/*Check the style in html since it might force the content to not be perfectly centered.*/
.nav {
    display: flex;           
    justify-content: center;
    align-content: center; 
    flex-wrap: wrap;         
    padding: 0 auto;              
    margin: 0 auto;        
}

.nav li {
    list-style-type: none;
    padding: 0.3125rem;
    margin: 1rem 0.1rem 0rem 0.8rem;
    overflow: hidden;
    background-color: black;
    border-radius: 1rem;
}

.nav li:hover {
    background-color: green;
}

.button {
    text-decoration: none;
    color: white;
}

p {
    text-align: justify;
    max-width: 28rem; /*Helps the text to clearly be between both images when the screen shrinks.*/
    margin: 0 auto;
    padding: 0;
    font-size: clamp(1.55rem, 0.4rem + 1vw, 2.3rem);
}

/*Helps keep the list of movie theaters centered. Try having the checkbox id to see if that works.*/
li {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-right: 10rem;
}

.movie-theater {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    margin-bottom: 1rem;
    margin-left: 6rem;
    font-size: 1rem;
    font-weight: bold;
    border: 0.0625rem solid;
    text-align: center;
    text-decoration: none;
    width: 20%;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.4)), url('img/popcorn.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
}

hr {
    width: 45%;
}

#copy {
    margin-left: 1rem;
}