:root {
 --container-width: 80rem;
 --primary-color: #ff34d6;
}

* {
 margin: 0;
 box-sizing: border-box;
 font-family: "Figtree", sans-serif;
 font-optical-sizing: auto;
 font-style: normal;
}

a {
    color: black;
    text-decoration: none;
}

.button {
 min-height: 2.5rem;
 border-radius: 0.5rem;
 border: none;
 font-weight: 600;
 font-size: 1rem;
 padding: 0 1rem;
 color: white;
 background: var(--primary-color);
}

.button--store-link {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 min-height: 3.5rem;
 max-height: 3.5rem;
 border-radius: 3.5rem;
 padding: 1.5rem;
 text-align: left;
 background: linear-gradient(to bottom, #383838, black);
}

.button--store-link__label {
 font-size: 0.75rem;
}

.button--store-link__store-title {
 display: block;
 font-size: 1rem;
 font-weight: 400;
}

.button--store-link__store-logo {
 height: 2rem;
}

.header {
 width: 100%;
 position: fixed;
 top: 1rem;
 z-index: 99;
}

.header__title {
 font-size: 1.25rem;
}

.header__container {
 padding: 0 0.75rem 0 1.5rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: var(--container-width);
 margin: 0 auto;
 height: 4rem;
 background-color: #ffffff;
 border-radius: 1rem;
}

.header__list {
 font-weight: 600;
 list-style: none;
 display: flex;
 align-items: center;
 gap: 1rem;
}

.header__list-button {
 height: 1.5rem;
}

.welcome {
 padding: 0 1rem;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 text-align: center;
 height: 100dvh;
 position: relative;
}

.welcome__background {
 position: absolute;
 width: 100%;
 height: 100dvh;
 opacity: 0.1;
 z-index: -1;
}

.welcome__title {
 font-size: 4rem;
 font-weight: 500;
}

.welcome__title strong {
 background-image: radial-gradient(circle at left, #a40086, #ff34d6);
 font-weight: inherit;
 color: transparent;
 background-clip: text;
}

.welcome__paragraph {
 margin: 1rem 0 1.5rem 0;
 font-size: 1.25rem;
 color: #00000090;
 width: 30%;
 text-align: center;
}

.welcome__buttons-container {
 display: flex;
 gap: 1rem;
}

.footer {
 text-align: center;
 padding: 1rem 0;
}

@media (min-width: 768px) {
 .header__list-button {
  display: none;
 }
}
@media (max-width: 768px) {
 .welcome__title {
  font-size: 3rem;
 }
 .welcome__paragraph {
  width: 100%;
 }

 .header {
  top: 0;
 }

 .header__container {
  border-radius: 0;
 }

 .header__list {
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  position: absolute;
  width: 100%;
  top: 100%;
  padding: 2rem 0;
  left: 0;
  background: white;
  box-shadow: 0 2rem 1rem #00000010;
 }

 .header__list--show {
  opacity: 1;
  pointer-events: all;
 }
}

@media (max-width: 468px) {
 .welcome {
  text-align: left;
 }
 .welcome__title {
  font-size: 2rem;
 }
 .welcome__paragraph {
  font-size: 1rem;
 }
 .welcome__buttons-container {
  width: 100%;
  flex-direction: column;
 }
 .button {
  width: 100%;
 }
 .button--store-link {
  justify-content: center;
 }
}
