@font-face {
  font-family: "ASL";
  src: url("https://cdn.glitch.com/8bd11670-4f32-4ff1-8ab9-679abad0aaec%2Fgallaudet_asl.ttf?v=1600448689548")
    format("truetype");
}
@font-face {
  font-family: "Auslan";
  src: url('https://cdn.glitch.com/8bd11670-4f32-4ff1-8ab9-679abad0aaec%2FAdmanGraphics_Auslan.ttf?v=1600448690277')
    format("truetype");
}
@font-face {
  font-family: "BSL";
  src: url('https://cdn.glitch.com/8bd11670-4f32-4ff1-8ab9-679abad0aaec%2Fbsl.ttf?v=1600449270072')
    format("truetype");
}


* {
  box-sizing: border-box;
}
html {
  --beige: #FFF8E6;
  --green: #9CD299;
  --peach: #FF9F92;

  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
}
body {
  font-family: helvetica, arial, sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding-top: 20px;
  background: var(--beige);
  text-align: center;
}
footer {
  font-size: 12px;
  letter-spacing: 1px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}
a:link, a:visited {
  color: var(--peach);
}
.circle {
  position: relative;
  background: var(--peach);
  border-radius: 50%;
  --size: calc(min(90vmin, 500px));
  font-size: var(--font-size);
  --half-size: calc(var(--size) / 2);
  
  height: var(--size);
  width: var(--size);
  line-height: var(--size);
  margin: 0 auto;
  overflow: hidden;
}
.circle.start {
  background: var(--green);
}
.asl {
  font-family: "ASL";
  font-weight: normal;
  text-align: center;
  white-space: pre;
  --font-size: min(100vmin, 600px);
}
.bsl {
  font-family: "BSL";
  font-weight: normal;
  text-align: center;
  white-space: pre;
  --font-size: min(60vmin, 400px);
}
.auslan {
  font-family: "Auslan";
  font-weight: normal;
  text-align: center;
  white-space: pre;
  --font-size: min(60vmin, 400px);
}
.text {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 12px;
  margin-top: 4px;
}
.horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  flex-wrap: wrap;
}
.box {
  display: block;
  position: relative;
  font-family: inherit;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
	background: transparent;
  border: 2px solid black;
	padding: 10px 40px;
  margin: 8px;
	text-align: center;
  cursor: pointer;
}
.box::after {
  display: block;
  content: '';
  background: var(--green);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: -1;
}
.box.accent {
  min-width: 215px;
}
.box.accent::after {
  background: var(--peach);
}

input[type=range], label {
  margin: 0 8px;  
  vertical-align: middle;
}