@font-face {
  font-weight: 400;
  font-family: dubaiRegular;
  src: url(dubai-regular.ttf);
}

@font-face {
  font-weight: 500;
  font-family: dubaiMedium;
  src: url(dubai-medium.ttf);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 5vw;
  background-repeat: no-repeat;
  background-position: center center;
  background: linear-gradient(134deg, #3853d4 0%, #f72585 100%);
}

.content {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 5vw;
  border-radius: 1rem;
  backdrop-filter: blur(134px);
  background: rgba(255, 255, 255, 0.46);
}

.logo {
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title,
.text {
  color: #fff;
  text-align: center;
  font-style: normal;
}

.title {
  font-size: 3rem;
  line-height: 3.5rem;
  font-family: dubaiMedium;
}

.text {
  font-size: 1.625rem;
  line-height: 1.5rem;
  font-family: dubaiRegular;
}

@media screen and (max-width: 900px) {
  .title {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .text {
    font-size: 1.25rem;
    line-height: 1.2rem;
  }
}

@media screen and (max-width: 740px) {
  .title {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .text {
    font-size: 1rem;
    line-height: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .title {
    font-size: 1.625rem;
    line-height: 1.8rem;
  }

  .text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .content {
    padding: 1rem;
  }

  .title {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .text {
    font-size: 0.8625rem;
  }
}

@media screen and (max-width: 360px) {
  .title {
    font-size: 0.9rem;
    line-height: 1rem;
  }

  .text {
    font-size: 0.625rem;
  }
}
