/* === GLOBAL === */
@font-face {
  font-family: 'MedievalSharp';
  src: url('/fonts/MedievalSharp-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "MedievalSharp", cursive;
  background: url("/img/live.webp") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

header,
.page-container,
nav,
.download-float {
  position: relative;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
}

header {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo img {
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 0 10px #000);
  transition: all 0.3s ease-in-out;
}

header .logo:hover img {
  transform: scale(1.1);
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer {
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid #b8860b;
  border-radius: 10px;
  height: 60px;
  margin: 30px auto 40px auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.content-full {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
