/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Arial;
}

h1 {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; color:black; 
    color:blue;
    font-family:arial;
    font-size:1000%;
    text-align:center
}

#cutie {
  display: block;
  margin: auto;
  width: 20%;
  
}
    
#film {
  float:left;
  padding: 15px;
}

#confess {
    color: yellow;
    background-color: blue;
    font-family: cursive;
    font-size:400%;
    font-weight: 500;
    text-align: center;
}

#confess1 {
    color: yellow;
    background-color: blue;
    font-family: cursive;
    font-size:180%;
    font-weight: 200;
    text-align: center;
}

#psa {
    color: blue;
    font-family: arial;
    font-size:175%;
    font-weight: 500;
    text-decoration: underline blue wavy;
    text-shadow:
    1px 1px 1px grey,
    2px 2px 1px grey;
    text-align: center;
}

#nowshowing {
    color: red;
    font-family: arial;
    font-size:400%;
    font-weight: 500;
    text-decoration: underline red;
    text-shadow:
    1px 1px 1px blue,
    2px 2px 1px blue,
    3px 3px 1px grey;
    text-align: center;
}

#note {
  color: grey;
  font-family: arial;
  font-size: 70%;
  font-weight: 300;
  text-align: center;
}

marquee {
    size:400%;
    font-family:arial;
}

#banner {
  width:100%; 
  background-color:blue; 
  text-align:center;
  margin:auto; 
  color:#FFF; 
  padding:10px 10px
}


#starz {
  width:300px;
  height: 300px;
  color: black;
  position: absolute;
  top: 550px;
  left: 20px;
}

    nav {
      padding: 1em;
    }

#nav{
      margin-right: 1em;
      text-decoration: none;
      color: #000000;
      text-transform: lowercase;
    }
    
#navmain{
      text-align: center;
      padding: 1em;
      text-decoration: none;
      color: #000000;
      text-transform: lowercase;
    }
    


section{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul.gallery {
  --numcolumns: 5;
  --gap: 0.25em;
  --size: calc(100vw / var(--numcolumns));
  display: grid;
  grid-template-columns: repeat(var(--numcolumns), 1fr);
  
  grid-template-rows: auto;
  gap: var(--gap);
  align-items: stretch;
  
  list-style: none;
}

ul.gallery > li {
  display: block;
  height: calc(var(--size) - var(--gap));
}

ul.gallery > li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}