/* CSS Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

/*
** Dev Dark Mode:TM:
*/
body {
  background-color: #222222;
  color: #fff;
}

/* Start Our Code */
:root {
  font-size: 18px;
  font-family: "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 16px;
  margin-bottom: 16px;
}

header h1 {
  padding: 10px 0;
  font-family: "JetBrains Mono", "Cascadia Mono", "Ubuntu Mono", Consolas, monospace;
  font-size: 24px;
}

header a {
  font-size: 16px;
  font-family: "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  padding-left: 24px;
  filter: brightness(100%) contrast(0%);
  text-decoration: none;
  color: orangered;
}

header a:hover {
  text-decoration: none;
  filter: brightness(100%) contrast(100%);
  transition: 0.15s ease-in-out filter;
}

main {
  display: flex;
  justify-content: center;
  text-align: center;
  align-content: center;
}
main #augh {
  display: flex;
  flex-direction: row;
  place-content: center;
  place-items: center;
}
main > div {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
}

main h4 {
  font-family: "Afacad", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  color: #414141;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 10px 0;
  line-height: 20px;
  font-family: "Afacad", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#titleLogo {
  margin-top: 250px;
  /* display: inline-block; */
  width: fit-content;
  font-size: 5rem;
  /* background-image: linear-gradient(to right, #ff5100, #006eff); */
  background: -webkit-linear-gradient(bottom right, #ff5100, #ff1375, #006eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#titleLogoHeader {
  background: -webkit-linear-gradient(top right, #ff5100, #ff1375, #006eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#titleLogoHeaderDisabled, #titleLogoHeaderDisabled :hover{
  filter: opacity(0%);
}

#linksContainer {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-top: 50px;
}
#linksContainer a {
  color: #ffbb11;
  text-decoration: none
}

#linksContainer a svg,
#linksContainer a img {
  filter: invert(100%) brightness(35%);
  transition: 0.15s ease-in-out filter;
}
#linksContainer a img {
  min-height: 86px;
  max-height: 86px;
}
#linksContainer a svg {
  max-height: 86px;
  min-height: 86px;
}

#linksContainer a:hover svg,
#linksContainer a:hover img {
  filter: invert(100%) brightness(100%);
}

#linksContainer img {
  min-height: 86px;
  max-height: 86px;
}
#linksContainer div {
  display: flex;
  flex-direction: column;
}

#headerButtons {
  font-size: 16px;
  font-family: "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}