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;
}

body {
  background-color: #d6c687;
  background-image: url("../assets/images/logo/logo2.svg"), url("../assets/images/logo/logo2.svg");
  background-size: 150px 150px;
  background-position: 0 0, 75px 75px;
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  align-items: center;
}

main {
  flex: 1;
}

header,
main {
  width: 480px;
  max-width: 95vw;
}

footer {
  width: 100%;
  margin-top: auto;
}

@font-face {
  font-family: "Smythe";
  /* From /css/main.css, we only go up ONE level to reach /assets/ */
  src: url("../assets/fonts/Smythe-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Sans";
  src: url("../assets/fonts/SofiaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1 {
  text-align: center;
  font-size: 3.5rem;
  font-family: "Smythe";
  font-weight: 400;
}
h1 span {
  font-size: 2.5rem;
}

p {
  text-indent: 35px;
  font-size: 1.2rem;
  font-family: "Sofia Sans";
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: transparent;
}
header .logo-container {
  width: 350px;
  height: 210px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
header .quyzone-logo {
  width: 70%;
  margin-bottom: -39px;
}
header span {
  font-family: "Smythe", "Arial Black", sans-serif;
  color: #000000;
  font-size: 8rem;
}

footer {
  background-color: #ffffff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
footer p {
  margin: 0;
  width: 480px;
  text-align: center;
}

#link-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin: 10px 0;
}

#link-cards-container img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

link-card.cards {
  font-family: "Smythe", "Arial Black", sans-serif;
  height: 120px;
  width: 100%;
  max-width: 600px;
  background-color: rgba(219, 140, 5, 0);
  border-left: 4px solid #000000;
  border-right: 4px solid #000000;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: center;
  /* vertical centering */
  flex-direction: column;
}
link-card.cards:hover {
  transition: 200ms;
  background-color: rgba(255, 255, 255, 0.6);
  border-left: 2px solid rgba(0, 0, 0, 0);
  border-right: 2px solid rgba(0, 0, 0, 0);
}
link-card.cards:active {
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(0.98);
}
link-card.cards a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: black;
  /* Moved from inline */
  text-decoration: none;
  /* Moved from inline */
  font-size: 1.2rem;
}

.separator {
  display: block;
  width: 160px;
  height: 2px;
  margin: 18px auto;
  margin-bottom: 34px;
  border-top: 1px solid black;
  border-bottom: 2px solid black;
}/*# sourceMappingURL=main.css.map */