:root {
  --primary-color: #000033;
  --secondary-color: #fff;
  --font-family: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.4;
  background: var(--primary-color) url('storyframe-website.png') no-repeat center center / cover;
  color: var(--secondary-color);
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 0 3rem;
}

.storyframe {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.storyframe h1 {
  font-size: 4rem;
}

.storyframe p {
  font-size: 1.3rem;
}

.storyframe a {
  color: var(--secondary-color);
  text-decoration: none;
}

.storyframe a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  border: none;
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 1s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}