/* CSS */

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

/* Body */

body {
    background: #000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Stars Canvas */

#stars {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
}

/* Content */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding-top: 80px;
    z-index: 100;
    position: relative;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Logo */

.logo {
    width: auto;
    height: auto;
    max-width: 300px;
    margin-bottom: 1rem;
}

.text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Description */
/* Accent 66FFCC */

.description {
    font-size: 1rem;
    line-height: 1.75;
    color: #ffffff;
    width: min(90%, 60ch);
    max-width: 500px;
    margin-top: 1rem;
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    word-spacing: normal;
}

/* Fancy links */

.description a {
  color: #cccccc;
  transform: none;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

.description a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.description a:hover {
  color: #ffffff;
  transform: none;
}

.description a:hover::after {
  width: 100%;
}

/* Divide */

.divider {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 1.25rem 0;
  gap: 1rem;
  justify-content: center;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: #202020;
  flex: 1 1 0;
}

.divider-mark {
  display: inline-block;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0 0.75rem;
  letter-spacing: 0.35rem; /* optional spacing for small "x" */
  transform: translateY(-1px);
  background: transparent;
}

/* Attribution */

.attribution {
  width: min(90%, 65ch);
  max-width: 900px;
  text-align: right;
  color: rgba(255,255,255,0.55);
}

.attribution-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
}

.attribution-role {
  display: block;
  color: #cccccc;
}