@import url("./reset.css");

@import url("../font/inter/font.css");

:root {
  font-size: 18px;
  font-family: "Inter";

  --accent: #5555ff;

  --background: #f9fafb;
}

body {
  margin: 64px 0 0 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, #ccccff, #fff);
}

.content {
  filter: drop-shadow(0 0 12px #00000048);
  width: 1024px;
  border: solid 1px #cccccc;
  height: fit-content;
}

hr {
  border: none;
  border: solid 1px #cccccc;
  border-bottom: none;
}

p {
  font-size: 1.12rem;
}

h1 {
  font-size: 3rem;
}

.section {
  padding: 12px;
  background-color: var(--background);
}

.linkbar {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  font-size: 1.24rem;
  font-weight: 500;
}

.align_left {
  display: flex;
  gap: 12px;
}

.minecraft {
  background-image: url("../img/mc-tradinghall-1.png");
  background-position: center;
  background-size: cover;
  height: fit-content;
}

.minecraft_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px) brightness(32%);
  color: #fff;
}

.button {
  background-color: var(--accent);
  width: fit-content;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 800;
}

.horizontal_3 {
  display: flex;
  gap: 12px;
}

.horizontal_3 div {
  width: 100%;
  padding: 24px;
}

h3 a {
  color: var(--accent);
  text-decoration: underline;
}

.logo {
  width: 32px;
  image-rendering: pixelated;
  margin: 0 12px 0 0;
}
