@font-face {
  font-family: bodyFont;
  src: url(/fonts/tempora.ttf) format("truetype");
}

@font-face {
  font-family: scriptFont;
  src: url(/fonts/honeymoon.ttf) format("truetype");
}

:root {
  font-family: bodyFont, Cambria, Cochin, Georgia, Times, "Times New Roman",
    serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow: hidden;
  background: #323232;
  font-family: sans-serif;
}
canvas {
  display: block;
  width: 100vw;
  height: 100vh;
}

.input-container {
  display: flex;
  align-items: center;
  height: auto;
  width: 100vw;
  flex-direction: column;
  position: absolute;
  box-sizing: border-box;
  padding: 24px 24px 32px 24px;
  bottom: 0;
  font-family: bodyFont, Cambria, Cochin, Georgia, Times, "Times New Roman",
    serif;
  font-weight: 400;
}

.input {
  position: relative;
  width: 360px;
  max-width: 100%;
  padding: 12px;
  font-size: inherit;
  font-family: inherit;
  border: none;
  outline: none;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  color: #fff;
  text-align: center;

  box-shadow: 0 1px 0 #fff;
}

.input:focus {
  box-shadow: 0 2px 0 #fff;
}

.title {
  font-size: 3.2rem;
  font-family: scriptFont, serif;
}

.input::placeholder {
  color: #d4d4d4bb;
}

.frame-group,
.casing-group {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
}

.group {
  button {
    width: 40px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px #fff;
  }
}


h5 {
  font-weight: 400;
  width: 100%;
  margin: 16px 0 16px 0;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}