:root {
    --main-bg-color: #2140A9;
    --dark-color: #000814;
    --blue-dark: #5259BA;
    --yellow-light: #FCF5A2;
    --green-light: #90FCD6;
    --blue-light: #81CFF3;
    --pink-light: #ECA7DE;

    --cta-color-a: #01D998;
    --cta-color-b: #0040E3;
    --cta-color-c: #1201D9;
    --cta-color-d: #9F35C5;

    --shadow-offset: 6px;
    --shadow-offset-2: 12px;

    --shadow-blue-pink: var(--shadow-offset) var(--shadow-offset) 0 var(--blue-light), var(--shadow-offset-2) var(--shadow-offset-2) 0 var(--pink-light);
    --shadow-green-yellow: var(--shadow-offset) var(--shadow-offset) 0 var(--green-light), var(--shadow-offset-2) var(--shadow-offset-2) 0 var(--yellow-light);
    --shadow-black-pink: var(--shadow-offset) var(--shadow-offset) 0 var(--dark-color), var(--shadow-offset-2) var(--shadow-offset-2) 0 var(--pink-light);

    --border-radius: 2.4rem;
    --border-radius-s: 1.6rem;

    --text-shadow: 3px 3px 0 var(--dark-color);

    --shadow: 0 12px 36px rgba(0,0,0, 0.04), 0 4px 4px rgba(0,0,0, 0.04), 0 24px 12px rgba(0,0,0, 0.04);
    --shadow-b: 0 8px 28px rgba(0,0,0, 0.04), 0 4px 2px rgba(0,0,0, 0.04), 0 12px 8px rgba(0,0,0, 0.04);

    --font-size-xl: 4.2rem;
    --font-size-l: 3.2rem;
    --font-size-m: 2.4rem;
    --font-size-s: 2rem;
    --font-size-xs: 1.6rem;
  }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
    font-family: 'Inter', sans-serif;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 62.5%;
}

input, button {
    font-family: 'Inter', sans-serif;
    font-family: 'Barlow Condensed', sans-serif;
}

body {
    position: relative;
    /* background: white;
    background: url(../images/background/graphics-yeah.jpg);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed; */
}

#background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/background/graphics-yeah.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.light {
    opacity: 0.5;
}

.center {
    text-align: center;
}

a {
    text-decoration: none;
}

form#submit-answer {
    margin: 3.2rem 0;
    position: relative;
}

form#submit-answer, form#reset {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form#submit-answer input, textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: var(--border-radius);
    font-size: var(--font-size-m);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.5);
    color: var(--dark-color);
    transition: all 0.3s;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

form#submit-answer input {
    padding: 1.6rem 6.4rem 1.6rem 1.6rem;
    height: 6.4rem;
}

form#submit-answer input:focus, textarea:focus {
    /* box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2); */
    background: white;
    /* color: var(--blue-dark); */
}

::placeholder {
    /* color: var(--blue-dark); */
    opacity: 0.5;
}

.submit-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 1.2rem;
    right: 1.2rem;
    height: 4rem;
    width: 4rem;
    border-radius: var(--border-radius-s);
    border: none;
    outline: none;
    font-weight: 500;
    font-size: var(--font-size-m);
    color: white;
    background: var(--blue-dark);
    background: linear-gradient(120deg, var(--pink-light) 0%, var(--blue-dark) 100%);
    background-size: 200% 200%;
    /* box-shadow: var(--shadow); */
    -webkit-tap-highlight-color: transparent;
    -webkit-animation: Animation 5s ease infinite;
    -moz-animation: Animation 5s ease infinite;
    animation: Animation 5s ease infinite;
    transition: transform 0.25s;
}

.submit-button .loader {
    display: none;
}

.submit-button span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button:active {
    /* transform: scale(0.97); */
    /* box-shadow: var(--shadow-b); */
}

.submit-button:disabled {
    opacity: 0.8;
}

.submit-button:disabled span {
    display: none;
}

.submit-button:disabled .loader {
    display: block;
    flex: 0;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
}

.loader {
  margin: auto;
  font-size: 12px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5rem solid rgba(255, 255, 255, 0.2);
  border-right: 0.5rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5rem solid rgba(255, 255, 255, 0.2);
  border-left: 0.5rem solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes Animation { 
    0%{background-position:10% 0%}
    50%{background-position:90% 100%}
    100%{background-position:10% 0%}
}

#top-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3.2rem;
    margin-top: 0.8rem;
}

#logo-img {
    height: 3.2rem;
}

h2 {
    color: white;
    font-weight: 400;
    font-size: var(--font-size-l);
    font-weight: 600;
    line-height: 115%;
}

h3 {
    font-size: var(--font-size-s);
    margin-right: 0.4rem;
    font-weight: 500;
    color: white;
}

/* h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
} */

.buttons {
    display: flex;
    margin: 2.4rem 0 0 0;
    align-items: center;
    justify-content: center;
}

.pill-button {
    padding: 0 1.6rem;
    border-radius: 1.6rem;
    border: none;
    height: 4rem;
    margin: 0 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.pill-button.large {
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-s);
    height: 4.8rem;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: var(--font-size-s);
    font-weight: 500;
    color: var(--dark-color);
}

.pill-button img {
    margin-right: 0.6rem;
    /* opacity: 0.7; */
}

#answer-box {
    padding: 2.4rem;
    background: rgba(0,0,0,0.15);
    border-radius: var(--border-radius);
    margin: 4rem 0 0 0;
    overflow: hidden;
}

#scroll {
    white-space: nowrap;
}

#answer-box #initial {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    opacity: 1;
}

#answer-box #sure {
    width: 100%;
    display: inline-block;
    opacity: 0;
}

button.arrow {
    border: none;
    outline: none;
    font-weight: 500;
    font-size: var(--font-size-m);
    color: white;
    padding-right: 4.8rem;
    background: url(../images/arrow.svg) no-repeat center right;
    cursor: pointer;
}

.answers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#total-answers {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#mini-logo img {
    margin-top: 0.8rem;
    width: 10rem;
}

.panel {
    padding: 2.4rem;
    background: rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2.4rem;
}

.panel h2 {
    color: var(--dark-color) !important;
}

.panel h4 {
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
    font-size: var(--font-size-xs);
    color: var(--dark-color) !important;
}

textarea {
    padding: 1.6rem;
    line-height: 130%;
}

textarea + button {
    margin-top: 1.6rem;
}

/* textarea {
    border: 2px solid transparent;
    outline: none;
    border-radius: var(--border-radius);
    padding: 1.6rem;
    font-size: var(--font-size-m);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    resize: none;
    width: 100%;
    line-height: 130%;
    transition: all 0.3s;
    margin-top: -1.6rem;
}

textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: white;
    color: var(--dark-color);
} */

#question-block {
    padding: 2.4rem;
    transform: rotate(-1deg);
    background: var(--blue-dark);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-blue-pink);
}

#question-block h2 {
    font-weight: 800;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 1px var(--blue-dark);
    text-stroke: 1px var(--blue-dark);
    text-shadow: var(--text-shadow);
}

.glass {
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
}

.icon-button {
    width: 4rem;
    height: 4rem;
    border-radius: 1.6rem;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#content .main {
    padding: 1.6rem;
    /* min-height: 100vh; */
}

#home {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#more-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2.4rem;
}

#the-answers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../images/triangle.png) no-repeat center center;
    background-size: 130% auto;
}

#answers {
    position: fixed;
    padding: 3.2rem 1.6rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(../images/background/graphics-yeah-2.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

#answers ul {
    color: white;
    width: 100%;
    font-size: var(--font-size-l);
    padding: 0;
    margin: 3.2rem 0;
}

#answers li {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.2rem 2.4rem;
    background: var(--blue-dark);
    -webkit-text-stroke: 1px var(--blue-dark);
    text-stroke: 1px var(--blue-dark);
    text-shadow: var(--text-shadow);
    transform: rotate(-1deg);
    font-weight: 800;
    letter-spacing: 0.5px;
}

#answers li:not(:last-child){
    margin-bottom: 0.4rem;
}

#answers li h5 {
    width: 4rem;
}

#answers li p {
    flex: 1;
}

.hide {
    position: fixed;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.center-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-buttons {
    width: 100%;
    padding: 2.4rem 1.6rem 0 1.6rem;
}

.main-button {
    padding: 0 3.2rem;
    border: none;
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-s);
    outline: none;
    cursor: pointer;
    background: var(--dark-color);
    font-size: var(--font-size-m);
    font-weight: 500;
    color: white;
}

.main-button:disabled {
    opacity: 0;
}

.main-button img {
    margin-right: 0.8rem;
}

.main-button:not(:last-child) {
    margin-bottom: 0.4rem;
}

#wright-badge {
    padding: 1.2rem 3.2rem;
    color: white;
    letter-spacing: 2.5px;
    margin-top: 3.2rem;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0,0,0,0.1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

#total-responses {
    transform: rotate(-1deg);
    position: relative;
    text-align: center;
    margin: 1.6rem 0 3.2rem 0;
}

#each-response {
    position: absolute;
    top: 1.6rem;
    left: 2.4rem;
    right: 2.4rem;
    bottom: 1.6rem;
    visibility: hidden;
    pointer-events: none;
}

#each-response li {
    position: absolute;
    top: -8rem;
    left: 0;
    bottom: 0;
    right: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#total-responses p, #each-response p {
    -webkit-text-stroke: 1px var(--blue-dark);
    text-stroke: 1px var(--blue-dark);
    text-shadow: var(--text-shadow);
    font-size: var(--font-size-l);
    color: white;
    font-weight: 700;
}

#total-responses h2, #each-response h5 {
    font-size: 27.2rem;
    font-weight: 700;
    -webkit-text-stroke: 4px var(--blue-dark);
    text-stroke: 4px var(--blue-dark);
    text-shadow: 8px 8px 0 var(--dark-color);
    line-height: 69%;
    margin-bottom: 2.4rem;
}

#all-questions li {
    padding: 2.4rem;
    border-radius: var(--border-radius-s);
    color: var(--dark-color);
    font-size: var(--font-size-m);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    margin-bottom: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

#all-questions ul {
    padding-bottom: 8rem;
}

#all-questions li.active {
    background: var(--blue-dark);
    color: white;
    box-shadow: var(--shadow-blue-pink);
}

#rules {
    background: white;
    padding: 2.4rem 2.4rem 3.2rem 2.4rem;
}

#rules h1 {
    font-size: var(--font-size-l);
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

#rules h2 {
    color: var(--blue-dark);
}

#rules h3 {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: var(--font-size-m);
    font-weight: 400;
    margin-bottom: 4.8rem;
}

#rules h4 {
    font-size: var(--font-size-s);
    font-weight: 500;
    color: var(--blue-dark);
}

#rules h5 {
    text-transform: uppercase;
    font-size: var(--font-size-s);
    font-weight: 600;
    color: var(--blue-dark);
}

#rules p {
    font-size: var(--font-size-s);
    font-weight: 400;
    color: var(--dark-color);
    opacity: 0.7;
}

.numbered {
    margin-bottom: 4.8rem;
}

.numbered li {
    display: flex;
    margin-top: 1.6rem;
}

.numbered li h4 {
    width: 4rem;
}

.numbered li p {
    flex: 1;
}

.faq li {
    margin-top: 2.4rem;
}

.faq li h4 {
    margin-bottom: 0.4rem;
}

#new-question {
    position: fixed;
    bottom: 3.2rem;
    left: 1.6rem;
    right: 1.6rem;
}

#new-question textarea {
    display: none;
}

#new-question button {
    width: 100%;
}

#next-question {

}

#reset-game {

}

#each-response h5 {
    font-size: 17rem;
    font-weight: 700;
    -webkit-text-stroke: 3px var(--blue-dark);
    text-stroke: 3px var(--blue-dark);
    text-shadow: 6px 6px 0 var(--dark-color);
    line-height: 69%;
    margin-bottom: 2.4rem;
}

#each-response p {
    -webkit-text-stroke: 1px var(--blue-dark);
    text-stroke: 1px var(--blue-dark);
    text-shadow: 4px 4px 0 var(--dark-color);
    font-size: var(--font-size-xl);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
}