/* CSS setup */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --content-spacing: 1.2rem;
  --padding: 100px;
  --hover: all 0.2s ease-out;
  --base-font: "Archivo", sans-serif;
  --normal-font: 400;
  --bold-font: 800;
  --radius: calc(var(--content-spacing) * 0.33);
  --img-attr: no-repeat center center/contain;
  --dark-color: #333333;
  --white-color: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: var(--base-font);
  font-size: var(--base-font-size);
  font-weight: var(--normal-font);
  line-height: 1.5;
  color: var(--white-color);
  background: var(--dark-color);
  overflow-x: hidden;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.landing div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing svg {
  width: 100px;
  height: 100px;
  fill: var(--white-color);
}