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

html,
body {
  height: 100vh;
  color: #fff;
  font-family: sans-serif;
  background-color: rgba(40, 50, 70, 1);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fill { fill: rgba(40, 50, 70, 1); }
.stroke { fill: none; }

.fill,
.stroke {
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.end-card {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5vw;
  width: 100vw;
  height: 100vh;
  text-align: center;
  background-color: rgba(40, 50, 70, 0.9);
  opacity: 0;
}

.title {
  margin-bottom: 2rem;
  font-size: 15vh;
  line-height: 1;
  font-family: 'Creepster', cursive;
}

.button {
  padding: 1em 2em;
  color: rgba(40, 50, 70, 1);
  font-weight: bold;
  font-size: 2vh;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #fff;
}