@charset "UTF-8";
body {
  background: #a30063;
  font-family: Museo Sans, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  /*  !**
   * Для эксплорера
   *!
    -ms-user-select: none;

    !**
     * Для мозилы
     *!
    -moz-user-select: none;

    !**
     * Для конкверора
     *!
    -khtml-user-select: none;

    !**
     * Для Сафари и Хрома
     *!
    -webkit-user-select: none;*/
}

img {
  max-width: 480px;
}

.container {
  background: white;
  margin: 0 auto;
  width: 480px;
}

footer, section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}

.p_ignore {
  max-width: none;
  width: 480px !important;
  margin: 0 -20px;
}

h1 {
  font-size: 46px;
  line-height: 1.1em;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  display: flex;
  flex-direction: column;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
h2 span {
  color: #fc82d5;
  font-weight: 900;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 440px;
  height: 90px;
  background: black;
  border: 5px solid black;
  border-radius: 50px;
  font-size: 25px;
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
  position: relative;
  animation: button_animate 3s linear infinite;
}
@keyframes button_animate {
  0% {
    background: rgba(0, 0, 0, 0); /* Прозорий фон */
  }
  50% {
    background: rgba(0, 0, 0, 1); /* Фон з'явився */

  }
  100% {
    background: rgba(0, 0, 0, 0); /* Прозорий фон */

  }
}
.button span {
  color: #fc82d5;
  margin: 0 8px;
}

input {
  width: 440px;
  height: 90px;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  border: none;
  color: #272727;
}

input::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

footer img, footer a {
  margin: 5px;
  color: darkgrey;
}

/*# sourceMappingURL=settings.css.map */
