/* teague.io - Static landing page styles */
/* Replaces WordPress West theme + Live Composer + Simple Custom CSS */

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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  background-color: #000000;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing {
  text-align: center;
  width: 100%;
}

.header-text {
  color: #ab71d9;
  font-family: 'Righteous', cursive;
  font-size: 124px;
  opacity: 0.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  user-select: none;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .header-text {
    font-size: 96px;
  }
}

@media (max-width: 768px) {
  .header-text {
    font-size: 64px;
  }
}

@media (max-width: 480px) {
  .header-text {
    font-size: 42px;
  }
}