/*
Theme Name: Heated Rivalry Trivia
Theme URI: https://wordpress.org/
Author: Aowlyne
Author URI: https://wordpress.org
Description: Heated Rivalry Trivia Fun Game
Requires at least: 6.1
Tested up to: 6.9
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: hrtrivia
Tags: quizz, trivia, quiz, heated, rivalry, shane, ilya
*/
:root {
  --base-font-family: "Inter", sans-serif;
  --heading-font-family: "Caveat", cursive;
  --heading2-font-family: "League Spartan", sans-serif;
  --subheading-font-family: "Poppins", sans-serif;
  --neutral1: #fafafa;
  --neutral2: #212121;
  --neutral3: #b0bbc9;
  --neutral4: #526377;
  --neutral5: #2f3640;
  --neutral6: #dfe4ea;
  --opacity1: #fafafa99;
  --easy: #6ab04c;
  --normal: #f0932b;
  --hard: #eb4d4b;
  --expert: #b71540;
  --highlight1: #e55039;
  --highlight2: #eb2f06;
  --highlight3: #1e3799;
  --highlight4: #0c2461;
}

html {
  margin: 0;
  font-family: var(--base-font-family);
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  background: url("https://hrtrivia.i-love-verticals.com/wp-content/uploads/2026/01/triviaBG.png") center center/cover;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  body {
    overflow: hidden;
    height: 100vh;
  }
}

main {
  height: 100%;
}

.tag {
  padding: 2px 5px;
  font-family: var(--base-font-family);
  text-transform: uppercase;
  color: var(--neutral1);
  border-radius: 8px;
  font-size: 11px;
  width: fit-content;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin: 10px;
}
.tag:has(i) {
  padding: 5px 10px;
}
.tag i {
  font-size: 20px;
}
.tag.-Easy {
  background-color: var(--easy);
}
.tag.-Normal {
  background-color: var(--normal);
}
.tag.-Hard {
  background-color: var(--hard);
}
.tag.-Expert {
  background-color: var(--expert);
}
.tag.-from {
  background-color: var(--neutral4);
}
.tag.-score {
  background-color: var(--neutral5);
}

.question {
  position: relative;
  top: -50px;
  height: 300px;
  margin: 15px;
  background-color: var(--neutral1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .question {
    height: 60%;
  }
}
.question__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.question__main {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: auto 10px;
}
.question__buttonsWrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.question__buttonsWrapper div {
  margin: auto;
}
.question__answer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60%;
  width: 90%;
  border-radius: 16px;
  transform: translate(5%, 35%);
  opacity: 1;
  visibility: visible;
  background-color: var(--neutral6);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.question__answer.-hidden {
  opacity: 0;
  visibility: invisible;
}
@media (min-width: 1024px) {
  .question__answer {
    height: 50%;
    width: 70%;
    transform: translate(25%, 50%);
  }
}

.btn {
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: all linear 300ms;
  width: fit-content;
}
.btn.-alpha {
  background-color: var(--highlight2);
  color: var(--neutral1);
}
.btn.-alpha:hover {
  background-color: var(--highlight1);
}
.btn.-bravo {
  background-color: var(--highlight4);
  color: var(--neutral1);
}
.btn.-bravo:hover {
  background-color: var(--highlight3);
}

.trivia {
  width: 100%;
  margin: auto;
  padding: 0 1rem 1rem;
  background-color: var(--opacity1);
  border-radius: 16px;
  text-align: center;
  position: relative;
  margin-top: 150px;
  height: 75%;
}
@media (min-width: 640px) {
  .trivia {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .trivia {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .trivia {
    max-width: 1024px;
  }
}
.trivia__logo {
  width: 100%;
  max-width: 400px;
  position: absolute;
  transform: translateX(-50%);
  top: -150px;
}
.trivia h1 {
  opacity: 0;
  position: absolute;
}
.trivia__wrapper {
  padding-top: 70px;
  display: grid;
  gap: 10px;
  height: auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .trivia__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100%;
  }
}
.trivia__questionWrapper {
  height: 500px;
  background: url("https://hrtrivia.i-love-verticals.com/wp-content/uploads/2026/01/triviaBG.png") center center/cover;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .trivia__questionWrapper {
    height: 90%;
  }
}
.trivia__questionLogo {
  width: 300px;
}
.trivia__infos {
  background: var(--neutral1);
  height: auto;
  border-radius: 16px;
  overflow: auto;
}
@media (min-width: 1024px) {
  .trivia__infos {
    height: 90%;
  }
}
.trivia__infos h2 {
  background: url("https://hrtrivia.i-love-verticals.com/wp-content/uploads/2026/01/triviaBG.png");
  background-position: top right;
  background-origin: center;
  margin: 15px 0;
  color: var(--neutral1);
  text-transform: uppercase;
  padding: 5px;
}
.trivia__infos h2.-first {
  border-radius: 16px 16px 0 0;
  margin-top: 0;
}
.trivia__rules {
  font-size: 15px;
}
.trivia__rules p {
  margin: 15px;
}

/*# sourceMappingURL=style.css.map */
