*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

/* Header */

header {
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

h1 a {
  color: #000;
  text-decoration: none;
}

h1 a:hover {
  text-decoration: underline;
}

.serif-tag {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.6rem;
  line-height: 1.4;
}



.film-block {
  margin: 2rem 0;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.film-title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.film-title:hover {
  text-decoration: underline;
}


/* Buttons */.btn-skip {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: none;
  user-select: none;
}

/* Mobile */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .film-title {
    font-size: 1.75rem;
  }
}
