/* CSS RESET------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

/* end CSS RESET-------------------------------------------------------------------------------------------------*/



/* General Styles */

:root {

  --dark-color: #140e0c;
  --light-color: #f1f1f1;
  --red-accent: #dc4543;
  --purple-accent: #5b43e4;

  --title-font: "Rubik Mono One";
  --text-font: "Open Sans";

  --font-size-xl: 47px;
  --font-size-lg: 28px;
  --font-size-md: 24px;
  --font-size-sm: 20px;

  --font-size-t1: 20px;
  --font-size-t2: 16px;
  --font-size-t3: 14px;
  --font-size-t4: 12px;

}

body {
  background-color: var(--dark-color);
  text-decoration: none;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.title-xl {
  font-family: var(--title-font);
  font-size: var(--font-size-xl);
}

.title-lg {
  font-family: var(--title-font);
  font-size: var(--font-size-lg);
  color: var(--red-accent);
  text-align: center;
  line-height: 1.5;
  padding: 0 10px;
}

.title-md {
  font-family: var(--title-font);
  font-size: var(--font-size-md);
  color: var(--light-color);
  text-align: center;
}

.title-sm {
  font-family: var(--title-font);
  font-size: var(--font-size-sm);
  color: var(--light-color);
  text-align: left;
}

.t1 {
  font-family: var(--text-font);
  font-style: normal;
  color: var(--light-color);
  font-weight: 400;
  font-size: var(--font-size-t1);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
}

.t2 {
  font-family: var(--text-font);
  font-style: normal;
  color: var(--light-color);
  font-weight: 400;
  font-size: var(--font-size-t2);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
}

.t3 {
  font-family: var(--text-font);
  font-style: normal;
  color: var(--light-color);
  font-weight: 400;
  font-size: var(--font-size-t3);
  text-decoration: none;
  text-align: left;
  line-height: 1.5;
}

.t4 {
  font-family: var(--text-font);
  font-style: normal;
  color: var(--light-color);
  font-weight: 400;
  font-size: var(--font-size-t4);
  text-decoration: none;
  text-align: left;
  line-height: 1.5;
}

button {
	background: none;
	color: inherit;
	border: none;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

button:focus-visible {
  outline: 5px auto -webkit-focus-ring-color;
}

.button {
  font-family: var(--text-font);
  font-size: var(--font-size-t2);
  text-decoration: none;
  background-color: var(--red-accent);
  color: var(--light-color);
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  transition: 0.5s;
  text-align: center;
}

.button:hover {
  transform: scale(1.1);
}

.sr-only{
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media screen and (max-width: 500px) {
    :root {

      --font-size-xl: 32px;
      --font-size-lg: 24px;
      --font-size-md: 20px;
      --font-size-sm: 18px;

      --font-size-t1: 18px;
      --font-size-t2: 14px;
      --font-size-t3: 14px;
      --font-size-t4: 12px;
}

  .button {
    padding: 10px;
  }
}

/* What is FiteQlub?------------------------------------------------*/

.what-is-fiteqlub {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin: 60px auto;
  gap: 30px;
  max-width: 400px;
}
