* {
  box-sizing: border-box;
}

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

.content {
  height: 100vh;
  width: 100vw;
  background: radial-gradient(ellipse at 50% 0%, #87ceeb 0%, #4682b4 40%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  text-decoration: none;
  color: #ffffff;
}

.text-container {
  margin: 100px;
}

.shadowed {
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
}

.scrollable {
  overflow-y: scroll;
}

.title {
  font-size: 24px;
  text-wrap-mode: nowrap;
  vertical-align: top;
}

.highlight {
  font-weight: 900;
}

.light {
  font-weight: 100;
}

.subtitle {
  font-size: 48px;
}

.link-box {
  position: absolute;
  bottom: 20px;
  right: 10px;
}

.link-box a {
  color: #ffffff;
  font-family: sans-serif;
  text-decoration: none;
  font-size: 14px;
  padding: 10px;
}
