/* special-gothic-expanded-one-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Special Gothic Expanded One';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/special-gothic-expanded-one-v2-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --pink: #d43f8d;
  --blue: #0250c5;
}

body {
  font-family: 'Special Gothic Expanded One';
  background: linear-gradient(0deg, var(--blue) 0%, var(--pink) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0 30px;
  text-align: center;
}

a {
  text-decoration: none;
  color: white;
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(7px);
  border-top: 1px solid white;
  border-left: 1px solid white;
  box-shadow: inset 0 0 7px 0px white;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}

svg {
  width: 30px;
  height: 30px;
}