* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  background: linear-gradient(#e66465, #9198e5);
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 96px;
}

.content {
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 80px;
}

iframe {
  display: block;
  margin: 0 auto;
  width: 330px;
  max-width: 100%;
  transform: scale(2);
  transform-origin: top center;
  border:none;
}