* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

*,
::after,
::before {
  border-width: 0;
  border-style: solid;
  border-color: var(--border-color);
  box-sizing: inherit;
}

:root {
  --color-bg: #221544;
  --color-primary: #ff5e5c;
  --color-primary--darker: #e65553;
  --color-white: #fefefe;
  --border-color: #f6f6f7;
  --border-color-goggle: #eaeaea;
  --input-bg-color: #fbfbfb;
  --color-secondary: #2c5f8a;
  --transition: all 400ms ease;

  --red: #e02020;
  --red-dark: #c61d1d;
  --navbar-height: 42px;
  --card-spacing: 0.3em;
  --gray: #e9e8ec;
  --max-width: 2000px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  background-color: #f8f9fc;
}

hr {
  border-color: var(--color-bg);
  border-top-width: 1px;
  width: 100%;
  margin: 0.5rem 0 1rem 0;

  overflow: visible;
}
/*========= Header Styles===============*/

header {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  background-color: var(--color-bg);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 10;
  padding: 1rem;
}

.menu {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

/*========= Main Styles===============*/
main {
  background: #f3f3f349;
  height: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
.sdk-doc-link {
  padding-top: 0.3rem;
}
.sdk-doc-link a {
  text-decoration: underline;
}
.sdk-doc-link a:hover {
  text-decoration: none;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.first-paragraph {
  margin-bottom: 1rem;
  line-height: 24px;
}

.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1200px) {
  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 20rem;
  }
}
.shadow-card {
  background: var(--color-white);
  padding: 1.3rem;
  width: 50%;

  box-shadow: none;
  border: 1px solid #22154428;
}
@media (max-width: 1200px) {
  .shadow-card {
    width: auto;
  }
}
.shadow-card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.shadow-card .card-body h2 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 400;
}
.shadow-card p {
  margin-bottom: 1.3rem;
  color: #3f3f3f;
  line-height: 24px;
}
.shadow-card a {
  text-decoration: underline;
  transition: var(--transition);
}
.shadow-card a:hover {
  text-decoration: none;
}
.shadow-card a:hover {
  text-decoration: none;
}
.shadow-card hr {
  border-color: #efeff0;
  border-top-width: 1px;
  width: 100%;
  margin: 0.5rem 0 1rem 0;

  overflow: visible;
}

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

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .error img {
    width: 90%;
  }
}

/*========= Footer Styles===============*/
#footer {
  border-top: 1px solid #fefefe;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: transform 0.3s ease;
  background: #221544;
}
#footer .footer {
  line-height: 1.7;
  padding: 0 4rem;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  max-width: 1800px;
}

#footer .footer .logo {
  font-family: "PokemonFont", sans-serif;
}
#footer .footer .logo a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
#footer .footer .logo a:hover {
  color: var(--color-primary);
}
@media (max-width: 1200px) {
  #footer .footer {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
#footer .footer .copyright {
  display: flex;
  align-items: center;
}

.copyright a {
  color: var(--color-white);
  text-decoration: underline;
}
.copyright a:hover {
  text-decoration: none;
}
/*========= End of Footer Styles===============*/ /*# sourceMappingURL=header-footer.css.map */
