:root {
  --color-1: #000000;
  --color-2: #FFFFFF;
  --color-3: #270a57;
  --color-4: #003b85;
  --color-5: #56416f;
  --color-6: #0064a5;
  --color-7: #c0375a;
  --color-8: #eb724f;
  --color-9: #feb44e;
  --color-10: #f9f871;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  box-sizing: border-box;
  padding-left: 25px;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-3);
  color: var(--color-1);
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
}
body.scroll-disabled {
  overflow: hidden;
}
body.scroll-disabled::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 110;
  position: fixed;
  top: 0;
  left: 0;
}

#page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#page-web-home-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 1px 1px 4px var(--color-1);
  background-color: var(--color-3);
  overflow: hidden;
  display: block;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 101;
}
#page-web-home-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#page-ending {
  width: 100%;
  background-color: var(--color-3);
  color: var(--color-2);
}
#page-ending .pe-bottom {
  width: 100%;
}
#page-ending .pe-bottom .block-mobile {
  width: calc(100% - 20px);
  max-width: 1000px;
  margin: 50px auto;
  box-sizing: border-box;
  padding: 50px 10px;
  background-color: var(--color-3);
  color: var(--color-2);
  border: 1px solid var(--color-2);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#page-ending .pe-bottom .block-mobile h6 {
  font-size: 1.1rem;
}
#page-ending .pe-bottom .block-mobile p {
  font-size: 0.9rem;
  margin-top: 10px;
}
#page-ending .pe-bottom .block-mobile .badges {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
#page-ending .pe-bottom .block-mobile .badges a {
  display: inline-block;
}
#page-ending .pe-bottom .block-app {
  max-width: 1000px;
  margin: auto;
  text-align: right;
  box-sizing: border-box;
  padding: 25px 25px;
  font-size: 0.9rem;
  font-style: oblique;
}
