@use 'mixins'; @use 'reset'; @use 'header'; html { background: black; } body { font-size: 1.22em; display: flex; justify-content: center; align-items: center; background: black; color: white; background: radial-gradient(ellipse at 00% 100%, rgba(48, 25, 25, 0.3) 0%, rgba(52, 8, 8, 0.4) 35%, rgba(0, 0, 0, 0.4) 100%); @include mixins.text; } h1, h2, h3, h4, h5, h6 { @include mixins.heading; } .wrapper { width: 90vw; height: 90vh; display: grid; grid-template-rows: 100px 1fr; grid-template-columns: 2fr 6fr; grid-gap: 15px; } header, aside, main { background: rgba(12, 12, 12, 1); filter: drop-shadow(1px 1px 0px hsl(345, 69%, 20%)) drop-shadow(2px 1px 0px hsl(345, 69%, 15%)); position: relative; } aside { grid-row: 2/3; grid-column: 1/2; } main { grid-row: 2/3; grid-column: 2/3; } input { border: 1px solid black; height: 36px; font-size: 28px; padding: 3px; } .item-search-card { display: flex; flex-direction: row; } input.header-input { border: none; color: white; &-1, &-2 { font-weight: 800; } &-3, &-4 { font-weight: 500; } &-5, &-6 { font-weight: 200; } @include mixins.heading; }