:root {
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.5;
  --color-bg: 
    linear-gradient(145deg, #0a0a0a 0%, #000 40%, #111 100%),
    linear-gradient(220deg, #000 0%, #080808 50%, #000 100%),
    linear-gradient(180deg, #0d0d0d 0%, #000 60%, #0b0b0b 100%);
  --color-text: #000000;
  --color-accent: #d4c600;
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}


html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
   background: var(--color-bg);
  background-blend-mode: multiply;
  color: var(--color-text);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background-color: #000000;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
}

ul,
ol {
  list-style-position: inside;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.home-design-img-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #000000;
}

.home-design-img {
  height: 500px;
  width: 300px;
  background: #000000;
  margin: 0 auto;
}

.img-filler-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.img-filler {
  height: 300px;
  width: auto;
}
@media (max-width: 720px) {
  .home-design-img-container {
    flex-direction: column;
  }
}

.hidden {
  opacity: 0;
}