:root {
  --crim: crimson;
  --purple: var(--crim);
  --dark-purple: var(--purple);
  --fb-blue: var(--purple);
  --discord-blue: #5865f2;
  --border-radius: 15px;
  --td: #bbb
}

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

body,
header {
  background-color: #0e0e0e;
  display: flex;
  justify-content: space-between
}

body {
  font-family: system-ui, sans-serif;
  color: #fff;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden
}

::selection {
  background: var(--purple);
  color: #0e0e0e
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

header a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.5rem
}

footer,
main {
  text-align: center
}

main {
  padding: 140px 1rem 60px
}

h1 {
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 700;
  margin-bottom: 18px
}

.highlight {
  color: var(--purple)
}

p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ccc
}

.btn,
footer a {
  text-decoration: none
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 240px;
  border-radius: var(--border-radius);
  padding: 12px 0;
  font-weight: 600;
  color: #fff;
  margin: 10px auto;
  border: 2px solid transparent;
  transition: all .3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .25)
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255, 255, 255, .15)
}

.btn-primary {
  background: var(--purple);
  border-color: var(--purple)
}

.btn-primary:hover {
  background: var(--dark-purple);
  border-color: var(--dark-purple)
}

.btn-fb {
  background: var(--fb-blue);
  border-color: var(--fb-blue)
}

.btn-fb:hover {
  background: var(--dark-purple);
  border-color: crimson
}

.btn-discord {
  background: var(--discord-blue);
  border-color: var(--discord-blue)
}

.btn-discord:hover {
  background: #4752c4;
  border-color: #4752c4
}

.t-d {
  color: var(--td);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 20px 0;
  font-size: 14px
}

footer a {
  color: #ccc;
  margin: 0 10px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease
}

footer a:hover {
  border-color: #fff
}
