:root {
  --primary-color: #3600a9;
  --secondary-color: #f8f8f8;
}
body {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
header,
footer {
  background-color: #f8f8f8;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer {
  padding: 0px;
  flex-direction: column;
}
footer > ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
footer > ul.contact-links {
  width: 100%;
  justify-content: center;
  gap: 10px;
}
footer > ul.contact-links a {
  color: #3600a9;
  border: 1px solid #3600a9;
  border-radius: 6px;
  padding: 5px 15px;
}
footer > ul.contact-links a:hover {
  color: #4402d4;
}
footer > ul > li {
  padding: 8px;
}
footer > ul > li > a {
  text-decoration: none;
  color: #333;
}
footer > ul.copyright {
  justify-content: center;
  align-items: center;
  gap: 5px;
}
footer > ul.copyright>li{
  padding: 0;
  display: flex;
  justify-content: center;
   align-items: center;
}
footer > ul.copyright > li:first-of-type{
  font-size: .8rem;
  color: #16004598;
}
footer > ul.copyright > li:last-of-type{
  font-size: 1.5rem;
  color: #160045;
}
.container {
  max-width: 600px;
  margin: 0 auto;
}
main {
  padding: 20px;
  height: 100%;
  max-width: 700px;
  margin: 10px auto;
  overflow-y: auto;
}
main .hg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
main .hg > * {
  padding: 0;
  margin: 0;
}
main .hg >h2 {
  color: #3600a9;
  font-size: 2.2rem;
  letter-spacing: .7px;
}
main .hg >h2 >span {
  color: #3b00ba;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: .85px;
}
main .hg >h3{
  color: #3a1b7eeb;
  font-size: 1.4rem;
}
@media (max-width: 600px) {
  main .hg >h2 {
    font-size: 1.8rem;
  }
  main .hg >h3 {
    font-size: 1.2rem;
  }
}
article {
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #fff;
  max-width: 650px;
  margin: 8px auto;
}
article > ul {
  padding-left: 20px;
}
article > ul > li {
  padding: 5px 0px;
  font-size: 1.2rem;
  list-style-type: "✓";
  padding-inline-start: 1ch;
}
article > ul > li::marker {
  color: #3600a9;
  font-size: 1.6rem;
}
.btns {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
a.btn,
.btns > a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  border: #333 solid 1px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
a.btn.primary {
  background-color: #3600a9;
  color: #f8f8f8;
}
a.btn.primary:active,
a.btn.primary:hover {
  background-color: #f8f8f8;
  color: #3600a9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
a.btn:active,
a.btn:hover,
.btns > a:active,
.btns > a:hover {
  background-color: #3600a9;
  color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
