@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Space Grotesk", BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background-color: #f5f6f8;
  color: #073742;
  font-size: 18px;
}

h1 {
  line-height: 1em;
  letter-spacing: -0.02em;
  font-size: 8em;
  background-color: #073742;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h4 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: -0.01em;
  font-size: 1.2em;
  font-weight: 500;
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  text-align: center;
  margin-bottom: 3em;
}
header p {
  margin: 1em auto;
  font-size: 0.8em;
  max-width: 450px;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.6em;
  background-color: #000;
  color: #818181;
  width: 100%;
  padding: 0.5em 1em;
  margin-top: 1em;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 5em;
  width: 700px;
}

@media (max-width: 700px) {
  .container {
    width: 100%;
    margin: 5em 0;
    padding: 0 1em;
  }
}
section {
  display: flex;
  justify-content: space-around;
  gap: 1em;
  margin-bottom: 2em;
  width: 100%;
  position: relative;
}
section.list {
  flex-direction: column;
  display: flex;
  background-color: #fff;
  padding: 0.6em 1em;
  margin: 0.25em 0;
  border-radius: 0.5em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 0.85em;
  font-weight: 600;
  color: #073742;
  opacity: 1;
  transition: 0.25s ease-in-out;
  max-height: 224px;
  overflow-y: auto;
}
section.list:empty {
  opacity: 0;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 1em;
  letter-spacing: -0.025em;
  align-items: center;
  position: relative;
}
.row:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 1px;
  width: 100%;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.1);
}
.row a {
  font-family: "Space Mono", monospace;
  font-weight: 500;
  font-style: normal;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
}
.row .in {
  width: 100%;
  flex: 1;
}
.row .out {
  color: blue;
}

.qr-link {
  top: 3px;
}
.qr-link img {
  top: 3px;
}

.copy-btn {
  transition: 0.1s ease-in-out;
  padding: 2px 4px;
}
.copy-btn:active {
  background-color: #00ffaa;
  border-radius: 0.5em;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
  background-color: #00ffaa;
  border: none;
  padding: 0.6em 1.25em;
  text-align: center;
  text-decoration: none;
  margin: 0.25em 0.2em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 0.5em;
  font-size: 1em;
  font-weight: 600;
}
button:hover {
  filter: brightness(95%);
}

input[type=text],
input[type=email],
input[type=password] {
  background-color: #fff;
  border: none;
  padding: 0.6em 1em 0.4em;
  margin: 0.25em 0;
  border-radius: 0.5em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-weight: 600;
  color: #073742;
  width: calc(100% - 2.5em);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #00ffaa;
}

input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.1);
  font-size: 1em;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.1);
  font-size: 1em;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Стилизация скроллбара для всего документа */
::-webkit-scrollbar {
  width: 8px; /* ширина скроллбара */
  height: 8px; /* высота горизонтального скроллбара */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* цвет дорожки скроллбара */
}

::-webkit-scrollbar-thumb {
  background: #888; /* цвет самого скроллбара */
  border-radius: 10px; /* закругленные углы скроллбара */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* цвет скроллбара при наведении */
}/*# sourceMappingURL=style.css.map */