/* 
      .--..--..--..--..--..--.
    .' \  (`._   (_)     _   \
  .'    |  '._)         (_)  |
  \ _.')\      .----..---.   /
  |(_.'  |    /    .-\-.  \  |
  \     0|    |   ( O| O) | o|
   |  _  |  .--.____.'._.-.  |
   \ (_) | o         -` .-`  |
    |    \   |`-._ _ _ _ _\ /
    \    |   |  `. |_||_|   |
    | o  |    \_      \     |     -.   .-.
    |.-.  \     `--..-'   O |     `.`-' .'
  _.'  .' |     `-.-'      /-.__   ' .-'
.' `-.` '.|='=.='=.='=.='=|._/_ `-'.'
`-._  `.  |________/\_____|    `-.'
   .'   ).| '=' '='\/ '=' |
   `._.`  '---------------'
           //___\   //___\
             ||       ||
             ||_.-.   ||_.-.
            (_.--__) (_.--__)
       

 Insert all your glorious CSS styles below! */

/* Fonts */
@font-face {
  font-family: 'Aleo';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/aleo-v16-latin-regular.woff2') format('woff2');
}

body {
  background-image: url('images/bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', sans-serif;
  color: #000000;
  background-color: #fff8e7; 
}

/* Header and Footer */
header, footer {
  background-color: #fff3d6;
  text-align: center;
  padding: 15px;
}

header h1, footer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000000; 
  margin: 0;
  letter-spacing: 0.5px;
}


.intro {
  font-family: 'Aleo', serif;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6;
  color: #000000; 
  background-color: #fff3d6; 
  padding: 15px;
  border-radius: 10px;
}

/*  Grid  */
main {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  grid-gap: 25px;
  padding: 20px;
  justify-content: center;
}

.movie {
  background-color: #ffffff; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  border: 2px solid #000000; 
}


.movie img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #000000; 
}

.movie h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #000000; 
  margin: 8px 10px;
}

.movie .description {
  font-size: 14px;
  line-height: 1.4;
  padding: 10px;
  border-top: 1px solid #e0d8c0; 
  color: #000000; 
}

.movie .description a {
  color: #000000; 
  text-decoration: none;
}

.movie .description a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
