/* no steal pls */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
  --text: #dfece4;
  --bg: #060d09;
  --primary: #8edaa8;
  --secondary: #1e8642;
  --accent: #30e46f;
  --textcontrast: #64d97b;
  --bgcontrast: #64d97b;
  --primarycontrast: #64d97b;
  --secondarycontrast: #ff8f8f;
  --accentcontrast: #64d97b;
  --text50: hsl(143, 25%, 90%, 50%);
  --primary5: hsl(141, 51%, 71%, 6%);
  --primary50: hsl(141, 51%, 71%, 50%);
  --secondary5: hsl(141, 63%, 32%, 5%);
  --secondary30: hsl(141, 63%, 32%, 30%);
  --secondary50: hsl(141, 63%, 32%, 50%);
  --accent5: hsl(141, 77%, 54%, 5%);
  --accent10: hsl(141, 77%, 54%, 10%);
  --accent50: hsl(141, 77%, 54%, 50%);
}
html {
  animation: bg-scrolling 2s infinite;
  -webkit-animation: bg-scrolling 2s infinite;
}
body, html {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif;
}
h1 {
  font-size: 40px;
  color: var(--accent);
}
h2, h3, p, b {
  width: 80%;
  max-width: 1100px;
  text-align: center;
  margin: 1rem auto 1.5rem auto;
  display: block;
  color: var(--text);
}
.frbox {
  border-radius: 16px;
  padding: 15px;
  margin: 25px 25px;
  width: 100%;
  max-width: 320px;
  color: var(--text);
  box-shadow: 8px 12px 24px 6px rgba(0,0,0,0.4), 4px 16px 50px 0 rgba(0,0,0,0.2);
}
.sectioncard {
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem 1rem;
  gap: 1rem;
  max-width: 1100px;
  margin: auto;
  width: 85%;
  background-color: var(--primary5);
  box-shadow: 8px 12px 24px 6px rgba(0,0,0,0.4), 4px 16px 50px 0 rgba(0,0,0,0.2);
  border-radius: 12px;
}
.sectioncard:hover {
  box-shadow: 0 24px 28px 0 rgba(0,0,0,0.9), 0 17px 50px 0 rgba(0,0,0,0.9);
}
.frbox:hover {
  box-shadow: 0 24px 28px 0 rgba(0,0,0,0.9), 0 17px 50px 0 rgba(0,0,0,0.9);
}
.flexbox {
  display: flex;
  max-width: 1200px;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.seperator {
  width: 90%;
  max-width: 1200px;
  color: white;
  background-color: white;
  max-height: 2px;
  height: 2px;
  display: block;
  margin: auto;
}
h1 {
  text-align: center;
  width: 80%;
  max-width: 1200px;
  margin: 1rem auto;
  display: block;
  color: #2dea5c;
}
.main {
  width: 780px;
  max-width: 80%;
  max-height: 40%;
  display: block;
  margin: auto;
  border-radius: 8px;
}
.main-small {
  width: 580px;
  max-width: 80%;
  max-height: 40%;
  display: block;
  margin: auto;
  border-radius: 8px;
}
.frontpage {
  width: 1080px;
  max-width: 80%;
  max-height: 40%;
  display: block;
  margin: auto;
  border-radius: 8px;
}
a {
  display: block;
  margin: auto;
  text-align: center;
  color: #28f282;
}
.pfp {
  max-width: 200px;
  max-height: 200px;
  border: 2px #111;
  border-radius: 50%;
  display: block;
  margin: auto;
}
.button {
  color: #dafbeb;
  text-align: center;
  text-decoration: none;
}
ul.topnav {
  list-style-type: none;
  margin: 0;
  background-color: #0e2d1f;
  border-radius: 10px;
  overflow: hidden;
  float: none;
  z-index: 10000;
  position: sticky; /* Set the navbar to fixed position */
  top: 0px;
  width: 100%; /* Full width */
  padding: 2px;
  box-shadow: 8px 12px 24px 6px rgba(0,0,0,0.4), 4px 16px 50px 0 rgba(0,0,0,0.2);
}
ul.topnav li {float: left;}
ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
}
.topnav a:active {
  box-shadow: 0 5px #000;
  transform: translateY(1px);
}
.active {
  background-color: #04AA6D;
  color: white;
  border-radius: 8px;
}
.topnav .icon {
  display: none;
}
ul.topnav li a:hover:not(.active) {background-color: #20d690; border-radius: 8px;}
ul.topnav li .active {background-color: #04AA6D;}
.secondary {
  display: block;
  color: black;
  background-color: #20d690;
  border-color: black;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 12px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Verdana;
  font-size: 14px;
  box-shadow: 0 5px #000;
}
button {
  font-family: 'Inter', ui-sans-serif;
  background-color: var(--accent50);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
button:hover {
  transform: translate(0, -3px);
  box-shadow: 0 20px 80px -10px #04AA6D;
}
button:active {
  box-shadow: 0 5px #000;
  transform: translateY(2px);
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}
.dropdown:hover .dropdown-content {
  display: block;
}
@media screen and (max-width: 700px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}