@import url('https://fonts.cdnfonts.com/css/google-sans');

body {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: black;
  color: white;
  margin: 0;
  padding: 40px;
}

h1 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px 0;
}

table {
  border-collapse: collapse;
  width: 250px;
  margin-left: 0;
  border: 1px solid #ffffff;
}

td {
  padding: 8px 12px;
  border: 1px solid #ffffff;
}

td:first-child {
  text-align: left;
}

td:last-child {
  text-align: right;
}

a {
  color: #ffaa00;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 40px;
  font-size: 11px;
  color: #888;
}

.footer a {
  color: #aaa;
  text-decoration: underline;
}

.footer a:hover {
  color: #fff;
}

/*storypage*/
.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #fff;
}

.story-container {
  max-width: 600px;
  line-height: 1.6;
  font-size: 15px;
}

.story-container p {
  margin-bottom: 1.4rem;
}

.story-container .quote-intro {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #aaa;
}

.story-container .quote {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0.6rem;
  color: #eee;
}

.red {
  color: #ff4444;
  font-weight: 500;
}

/*big wangs*/
.buttons-container {
  position: absolute;
  top: 40px;
  right: 40px;
  text-align: right;
}

.buttons-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 6px;
}

.buttons-container img {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 580px) {
  body {
    display: flex;
    flex-direction: column;
  }

  .buttons-container {
    position: static;
    order: 1;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
  }

  .footer {
    order: 2;
  }
}