* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
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;
}

.container {
  width: 40vmax;
  height: 40vmax;
  line-height: 40vh;
  max-width: 400px;
  display: block;
  margin: 40px auto;
}
img {
  height: 100%;
}
a:link, a:visited {
  color: var(--peach);
}
.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);
}
.horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.circle {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--peach);
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  font-size: 5vmin;
  text-align: center;
  font-weight: normal;
}