@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  width: 100vw;
  height: 100dvh;
  padding: 0;
  color: #fff;
  margin: 0;
  font-family: "Inter", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

body {
  background-color: #121212;
  display: flex;
  width: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img {
  border-radius: 12px;
}

.content-wrapper {
  margin: 12px;
  background-color: #1d1d1d;
  padding: 12px 24px;
  border-radius: 12px;
}

button.contact-submit {
  background-color: #93009E;
  color: #fff;
  border-radius: 8px;
  min-width: 96px;
  padding: 6px 12px;
}

button.contact-submit:disabled {
  opacity: 60%;
  filter: brightness(60%);
}

.identifications {
  height: 0;
  overflow: hidden;
}

.identifications-active {
  height: 100% !important;
}

@media (max-width: 768px) {
  html, body {
    height: auto;
  }
}