@import url("https://use.typekit.net/nsx2gny.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html,
body {
  font-family: blue-goblet, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI";
  position: relative;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
}

.btn-container {
  display: flex;
  position: absolute;
  display: none;
}
.btn:first-child {
  margin-right: 8px;
}
.btn {
  font-family: blue-goblet;
  font-size: 28px;
  border: 2px solid black;
  padding: 12px 16px 8px;
  background: #ca9e7c;
  border-radius: 9px 7px 5px 8px;
  height: 56px;
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 0 black;
  filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.125));
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  place-content: center;
}

.btn img {
  width: 35px;
  height: 35px;
}

.btn-share {
  background: #000;
  color: #fff;
}
