/*vars*/
:root {
  --color-txt-max-contrast: #000;
  --color-bg-alternative: #3abfcd26;
  --color-bg-blue-soft: #009ddb20;
  --color-bg-default: transparent;
  --color-bg-green-soft: #1b1a28d9;
  --color-bg-max-contrast: #fff;
  --color-bg-neutral-soft: #fff1;
  --color-bg-orange-soft: #ff7b0020;
  --color-bg-popover: #1c1c27;
  --color-bg-red-soft: #dd000020;
  --color-blue-aim: #52bfff;
  --color-blue-hover: #b1d0ff;
  --color-body-bg: #1f1f23;
  --color-btn-disabled-txt: #7c819c;
  --color-btn-disabled-bg: #282d44;
  --color-gray-aim: #f5f5f5;
  --color-gray-hover: #f5f5f5;
  --color-green-aim: #25ef9b;
  --color-green-hover: #64ffb7;
  --color-green-vivid: #00dba7;
  --color-header-bg: transparent;
  --color-input-bg: rgb(123 137 147 / 8%);
  --color-line-separator: #000;
  --color-menu-btn-txt: var(--color-txt-default);
  --color-neutral-aim: #f5f5f5;
  --color-neutral-hover: #e0dede;
  --color-orange-aim: #f90;
  --color-purple-aim: #9b70ff;
  --color-red-aim: #ff4191;
  --color-red-hover: #ff579e;
  --color-shadow: #985ce5;
  --color-table-separator: #020d0f;
  --color-txt-default: #ededed;
  --color-txt-inverse: #192d44;
  --color-txt-muted: #b5c9d8;
  --color-txt-placeholder: #798894;
}

/*reset*/
html {
  box-sizing: border-box;
  height: 100%;
  color: var(--color-txt-default);
  -webkit-tap-highlight-color: transparent;
  background-color: var(--color-bg-default);
}

*,
*::before,
*::after {
  touch-action: manipulation;
  box-sizing: inherit;
}

body {
  margin: 0;
  font-size: 16px;
  background-color: var(--color-body-bg);
  min-height: 100%;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  position: relative;
}

hr {
  border-top: 0;
  border-bottom: 1px solid var(--color-line-separator);
  border-left: 0;
  border-right: 0;
  margin: 0;
}

img {
  flex-shrink: 0;
}

pre {
  margin: 0;
}

input,
select {
  min-width: 0;
}

select {
  vertical-align: bottom;
  width: fit-content;
}

select,
textarea,
input {
  font-size: inherit;
  color: inherit;

  &:focus {
    outline: 0;
    box-shadow: inset 0 0 2px var(--color-blue-aim);
  }
}

[type='checkbox'] {
  cursor: pointer;
}

[type='radio'] {
  &:focus {
    box-shadow: none;
  }
}

a {
  color: var(--color-txt-default);

  &:focus {
    outline: 0;
  }
}

li + li {
  margin-top: 1em;
}

/* Utilities */
.pad-default {
  padding: 16px;
}

/* Fonts */
.h1 {
  text-align: center;
  position: absolute;
  bottom: 0;
  font-size: 3em;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  margin: 0;
  color: #ff6c09;
  text-shadow: 0px 0px 4px #690000;
  font-weight: 400;
}

body {
  font-family: 'Fira Sans', sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  height: 100dvh;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  /* background-image: url('/assets/burn-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  backdrop-filter: blur(100px);
  */
}

.header {
  position: relative;
}

.burn-img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.content {
  height: 100dvh;
  overflow-y: auto;
  width: 100%;
}

.icon-burn {
  font-size: 200px;
}

.section-grid {
  display: grid;
  gap: 32px;
  padding: 4px;
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .section-grid {
    padding: 32px;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  }
}

.section__title {
  color: #ff6c09;
}

.section {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  width: 100%;
}

.social-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
  /* display: grid;
  grid-template-columns: repeat(autofit, minmax(100px, 1fr));
  grid-template-rows: 60px; */
}

.social-icon {
  height: 60px;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}
