:root {
  --primary-color: #313233;
  --secondary-color: #48494a;
  --accent-color: #d0d1d4;
  --background-color: #48494a;
  --text-color: #fff;
  --hr-top-color: #333334;
  --hr-bottom-color: #5a5b5c;

  --btn-primary-inner-color: #3c8527;
  --btn-primary-inner-hover-color: #2a641c;
  --btn-primary-inner-shadow-color: #1d4d13;
  --btn-primary-border-color: #1e1e1f;
  --btn-primary-inner-border-lt-color: #4f913cbf;
  --btn-primary-inner-border-br-color: #639d52;
}

@font-face {
  font-family: "MinecraftRegular";
  src: url("../fonts/Minecraft-Regular.otf") format("opentype");
}

@font-face {
  font-family: "MinecraftTen";
  src: url("../fonts/Minecraft-Ten.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: MinecraftRegular, sans-serif;
  text-decoration: none;
}

body {
  background: #313233;
  color: white;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  text-align: center;
  margin-bottom: 10px;
  font-family: MinecraftTen, sans-serif !important;
  font-weight: 400;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  background: #48494a;
  padding: 15px 20px 15px 20px;
  text-align: center;
  border: 2.5px solid #1e1e1f;
  flex: 1;
}

hr.full {
  border: 0;
  border-bottom: 2.5px solid #5a5b5c;
  border-top: 2.5px solid #333334;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

hr.full-mod {
  border: 0;
  border-bottom: 2.5px solid #5a5b5c;
  border-top: 2.5px solid #333334;
  width: calc(100% + 40px);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: -20px;
  margin-right: -20px;
}

hr.full-spn {
  border: 0;
  margin-left: -20px;
  margin-right: -20px;
}

hr.full-spn1 {
  border: 0;
  margin-top: -10px;
}

.info {
  color: #d0d1d4;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
  font-size: 15px;
  flex-direction: column;
}

.info-mod {
  color: #d0d1d4;
  margin-top: 15px;
  margin-bottom: -2px;
  display: flex;
  gap: 5px;
  font-size: 15px;
  flex-direction: column;
}

.buttons {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: none;
}

button {
  width: 100%;
  align-items: center;
  background: var(--btn-primary-inner-color);
  background-color: var(--btn-primary-inner-color);
  border: 2.5px solid var(--btn-primary-border-color);
  box-shadow: inset 0 -4.5px 0 0 var(--btn-primary-inner-shadow-color),
    inset 2.5px 2.5px 0 var(--btn-primary-inner-border-br-color),
    inset -2.5px -7.5px 0 var(--btn-primary-inner-border-lt-color);
  display: flex;
  justify-content: center;
  padding-bottom: 13px;
  padding-top: 10px;
  text-align: center;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background: #2a641c;
  box-shadow: inset 0 0 0 0 var(--btn-primary-inner-shadow-color),
    inset 2.5px 2.5px 0 var(--btn-primary-inner-border-br-color),
    inset -2.5px -2.5px 0 var(--btn-primary-inner-border-lt-color);
}

button span {
  display: inline-block;
  transition: transform .08s linear;
}

button:hover span,
button:disabled span {
  transform: translateY(2px);
}

button:disabled {
  background: #313233;
  cursor: not-allowed;
  box-shadow: inset 0 0 0 0;
}

.footer {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e6e8eb;
  border-bottom: 2.5px solid #151516;
  box-shadow: inset 0 -4.5px #b1b2b5;
  display: flex;
  margin: -20px -20px 20px -20px;
  padding: 18px 20px 18px 20px;
}

.nav-logo {
  color: black;
  font-size: 20px;
  font-weight: bold;
  font-family: MinecraftTen, sans-serif !important;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-family: MinecraftTen, sans-serif !important;
  font-weight: 400;
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.nav-links a:hover {
  color: #4caf50;
}

.release-link,
.beta-link {
color:#4caf50;
text-decoration:underline;
}

@media (min-width:768px) {
  .container {
    flex-direction: row;
  }
}