html {
    background: var(--page-margin, #020009);
    overflow-x: hidden;
    font-size: large;
    font-family: 'B612', sans-serif;
    line-height: 1.3;
    color: var(--primary-text, white);
}

body {
    max-width: 1100px;
    margin: auto;
    padding: 1rem;
}

h1 {
    font-size: 1.7rem;
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    -webkit-text-stroke-width: 0;
}

h2 {
    border-top: 2px solid #808080;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    -webkit-text-stroke-width: 0;
}

a {
    color: var(--link-accent, #fff570);
    cursor: pointer;
}

a.link {
    color: var(--secondary-text, rgb(193, 193, 193));
    margin-left: 8px;
}

a.link:hover {
    color: var(--secondary-text, rgb(233, 233, 233));
}

button {
    margin-top: 15px;
    padding: 10px 15px;
    border: 0;
    border-radius: 100px;
    background-color: #fff570;
    color: #020009;
    font-weight: bold;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    cursor: pointer;
}

button:hover {
    box-shadow: 0 0 20px #fff57050;
    transform: scale(1.1);
}

button:active {
    background-color: #e6da4c;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
}

@media (min-width: 1100px) {
    body {
        width: 1100px;
    }

    h2 {
        width: 1100px;
        align-items: start;
        align-content: start;
        border-radius: 2px;
        padding-top: 32px;
    }
}

p {
    font-size: 0.8rem;
    color: #9C9BA3;
}

.backbuttondiv {
    display: flex;
    justify-content: center;
    width: 100%;
}

.headertext {
    color: #fff570;
    width: 100%;
}

#popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #78c25a;
    color: white;
    margin-top: 15px;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1000;
}

#popup.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.navbar {
    color: #f2f3f5;
    font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #020009;
    text-align: left;
    padding: 5px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.col, .logo {
    flex: 1 1 0px;
}

.navbartitle {
    color: #f2f3f5;
    background-color: #020009;
    text-align: center;
    font-family: 'B612', sans-serif;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    white-space: nowrap;
}

.navbarlinks {
    color: #f2f3f5;
    background-color: #020009;
    text-align: right;
    padding-left: 5px;
    float: right;
    font-family: 'B612', sans-serif;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
  }

  .logo {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }

  .logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: blur(8px) brightness(1.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

.logo-wrapper:hover .logo {
  transform: scale(1.1);
}

.logo-wrapper:hover .logo-glow {
  opacity: 1;
}

.footertext {
	font-size:11px;
	color: #868c95;
	text-align: center;
	font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.footerlinks {
  color: #f2f3f5;
  font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: right;
  padding-left: 5px;
  float: right;
  font-size: 11px;
}

.fifth1 {
    color: #468;
}

.fifth2 {
    color: #a0cd7c;
}

.footer {
    margin-top: auto;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}