*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  min-height: 100vh;

  padding: 3.75rem 1.25rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: #121212;
  color: #fff;

  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.heading {
  font-size: 2.5rem;
  font-weight: 500;
}

.text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

label.input {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;

  padding: 1rem 1.25rem;
  margin: 0.5rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

label.input:hover {
  cursor: pointer;
  opacity: 0.8;
}

label.input > input {
  display: none;
}

label.input span {
  font-size: 1.2rem;
  font-weight: bold;
}



