* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Geist Sans";
  src: url("/fonts/GeistSans.woff2") format("woff2");
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #000;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Geist Sans";
}

input,
button {
  font-family: "Geist Sans";
  padding: 4px;
}

input:focus {
  outline: none;
}

img.profile {
  width: 8rem;
  height: 8rem;
  border-radius: 4rem;
}
