/******************************************************************************
START Glitch hello-app default styles

The styles in this section do some minimal CSS resets, set default fonts and 
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/
/* Our default values set as CSS variables */
:root {
  --color-bg: #BDC9FF;
  --color-text-main: #000000;
  --color-primary: #AFECE0;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "Azeret Mono", monospace;
  --font-family-header: "Azeret Mono", monospace;
}

/* Basic page style resets */
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

/* Navigation grid */
.footer {
  display: flex;
  justify-content: space-between;
  margin: 1rem auto 0;
  padding: 1rem 0 0.75rem 0;
  width: 100%;
  flex-wrap: wrap;
  border-top: 4px solid #fff;
}

.footer a:not(.btn--remix):link,
a:not(.btn--remix):visited {
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
  border-style: none;
}
.footer a:hover {
  background: var(--color-primary);
}

.footer .links {
  padding: 0.5rem 1rem 1.5rem;
  white-space: nowrap;
}

.divider {
  padding: 0 1rem;
}
/******************************************************************************
END Glitch hello-app default styles
******************************************************************************/

body {
  font-family: "Azeret Mono", monospace;
  background-color: var(--color-bg);
}

/* Page structure */
.wrapper {
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 1rem;
}
/* .content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
} */

p {
  font-size: 1.25rem;
}

/* Title h1 style */
.title {
  color: #2800FF;
/*   font-style: normal; */
/*   font-weight: bold; */
/*   font-size: 40px; */
  line-height: 105%;
  margin: 2rem 0 0;
  text-wrap: balance;
}


.films-list {
  list-style: none;
  margin-inline-start: 0;
  padding-inline-start: 0;
  margin-block: 4em;
  
  & li {
    margin: 1em 0;
  }
  
  & a {
    color: #333333;
    text-decoration: none;
    
    &:hover {
      text-decoration: underline;
    }
  }
}

.time {
  margin-left: 0.2em;
  opacity: 0.5;
  color: #2800FF;
  &::before {
    content: "... ";
  opacity: 0.5;
  }
}

footer {
  margin-block-end: 2em;

  div {
    margin-bottom: 0.5em;
  }
  
  & a {
    color: #333333;
    text-decoration: none;
    
    &:hover {
      text-decoration: underline;
    }
  }
}