html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    background-image: url(../images/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #1e1e1e;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    margin-right: 8px;
}

.nav__logo-text {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.nav__button {
    display: flex;
    height: 34px;
    width: 108px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background-color: #1c93e3;
    transition: all .15s ease .15s;
}

.nav__button-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.5px;
}


/* MAIN */
main {
  padding: 2px 16px 40px;
}

.main__body{
  position: relative;
  margin: 16px auto;
  padding: 32px 0;
  max-width: 400px;
  background: #1e1e1e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: all .15s ease .15s;
  background: rgba(30, 30, 30, 0.8);
}

.container {
  display: flex; 
  justify-content: center;
}

.main__img {
  text-align: center;
}

.main__img-image {
  width: 122px;
  height: 122px;
  border-radius: 61px;
}

.main__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: bold;
  text-align: center;
  max-width: 340px;
  padding: 0 10px;
  margin: 0 auto;
  color: #fff;
  text-shadow:
    0 0 2px #ff69b4,
    0 0 4px #ff69b4;
}


.main__description {
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  margin: 10px 16px 0;
  padding: 0;
  color: #fff;
  margin-bottom: -50px;

}



.main__button {
    margin: 40px auto 0 auto;
    display: flex;
    height: 52px;
    width: 164px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    transition: all .15s ease .15s;
    animation: main__button linear 5s infinite;
}


@-webkit-keyframes bg-move {
  0%   { background-position: -500px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes bg-move {
  0%   { background-position: -500px 0; }
  100% { background-position: 1000px 0; }
}


button.tgme_action_button_new.shine {
  height: 64px;
  width: 200px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 26px;
  background-color: #1c93e3;
  background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
  background-repeat: no-repeat;
  animation: bg-move linear 5s infinite;
}



.main__button button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border: none;
}