@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic Bold'), local('CenturyGothic-Bold'),
      url('../fonts/CenturyGothic-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic Bold Italic'), local('CenturyGothic-BoldItalic'),
      url('../fonts/CenturyGothic-BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic Italic'), local('CenturyGothic-Italic'),
      url('../fonts/CenturyGothic-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic'), local('CenturyGothic'),
      url('../fonts/CenturyGothic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


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

html, body {
  height: 100%;
}

body {
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: black;

  margin: 0;
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px) brightness(60%);
}

main {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 100%;
  margin: 0 auto;
  max-width: 480px;

  background-image: url(../img/bg-container.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title {
  width: 100%;
  max-width: 320px;

}

.arrow {
  width: 48px;
  margin: 0 auto;
}

.bubble {
  display: flex;
  flex-direction: column;
  
}

p {
  background-image: url(../img/bubble--middle.svg);
  background-size: 100% auto;
  background-repeat: repeat-y;

  padding: 0rem 1rem;
  font-family: 'Century Gothic', sans-serif;
  font-weight: bold;
  margin: 0;
  text-align: center;
  color: white;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.25em;
}