@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: local(''), url('fonts/inter.woff2') format('woff2'), url('fonts/inter.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: local(''), url('fonts/inter-bold.woff2') format('woff2'), url('fonts/inter-bold.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: local(''), url('fonts/inter-bolder.woff2') format('woff2'), url('fonts/inter-bolder.woff') format('woff');
}

*,
*::after,
*::before {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
iframe {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.5;
}

body > div{
  margin: 0 auto;
  max-width: 600px;
  padding: 0 30px;
  width: 100%;
}

@media (min-width: 768px) {
  body > div {
    padding: 0;
  }
}

iframe {
  border: none;
  box-shadow: none;
  height:100%;
}

h1 {
  font-size: 32px;
  font-size: clamp(32px, 8vw, 56px);
  margin-bottom: 10px;
}

p {
  margin-bottom: 18px;
}

a {
  color: cornflowerblue;
  text-decoration: none;
}

.btn {
  background-color: darkslateblue;
  background-image: linear-gradient(45deg, darkslateblue, cornflowerblue);
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: bold;
  margin-top: 8px;
  padding: 12px 24px;
  text-transform: uppercase;
}

.btn-block {
  display: block;
  text-align: center;
}

.btn-paypal{
  background: #fcbb32;
  color: #0d3685;
}

.btn-venmo {
  background: #008cff;
}

.btn-cashapp {
  background: #00d54b;
  color: black;
}