/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Lock scrolling completely */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Colors */
:root {
  --bg-color: #FCF9F6;
  --main-color: #3C1C11;
}

/* Font */
@font-face {
  font-family: "Brockmann";
  src: url("Brockmann-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Body */
body {
  background-color: var(--bg-color);
  position: relative;
  font-family: sans-serif;
  color: var(--main-color);
}

/* Centering wrapper */
.center-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center SVG */
.center-svg {
  width: 20vw;
  max-width: 100%;
  margin-bottom: 80px;
  height: auto;
  color: var(--main-color);
}

/* Mobile scaling */
@media (max-width: 768px) {
  .center-svg {
    width: 70vw;
  }
}

/* Bottom wrapper */
.bottom-wrapper {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bottom text */
.bottom-text {
  font-family: "Brockmann", sans-serif;
  font-size: 14px;
  letter-spacing: 0.75px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 12px;
  text-align: center;
}

/* Bottom icons */
.bottom-icons {
  display: flex;
  gap: 16px;
}

/* Icon styling */
.bottom-icons img {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--main-color);
}

