@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  background: url("./assets/sunset.jpg") center no-repeat;
  background-size: cover;
  min-height: 100vh;
  height: 100vh;
  padding: 1em;
  display: flex;
  justify-content: center;
  overflow: scroll;
}

.view {
  width: 330px;
  margin: auto;
  padding: 1.75rem;
  text-align: center;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.avatar {
  border-radius: 50%;
  height: 100px;
  padding: 0.4rem;
  border: double 4px transparent;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #fc6c6c, #59b2b6);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.row {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.button {
  appearance: none;
  background-color: #fafbfc;
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  color: #24292e;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
  padding: 8px 0;
}
.button:hover {
  background-color: transparent;
  text-decoration: none;
  transition-duration: 0.1s;
  font-weight: 600;
}
.button:disabled {
  background-color: #fafbfc;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959da5;
  cursor: default;
}
.button:active {
  background-color: #edeff2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
  text-decoration: none;
}
.button:focus {
  outline: 1px transparent;
}
.button .button-4:before {
  display: none;
}
.button:-webkit-details-marker {
  display: none;
}
