:root {
  --main-font: 'TRIAL FactorA';
  --main-font-bold: 'TRIAL FactorA Bold';
  --primary-color: #68a217;
  --secondary-color: #414142;
  --accent-color: #3d7b54;
  --light-color: #17ae87;
  --text-color: #333333;
  --background-color: #ffffff;
}

@font-face {
  font-family: 'TRIAL FactorA';
  src: url('./assets/fonts/Trial_FACTOR/TRIAL_FactorA-Medium.otf') format('woff');
}

@font-face {
  font-family: 'TRIAL FactorA Bold';
  src: url('./assets/fonts/Trial_FACTOR/TRIAL_FactorA-Bold.otf') format('woff');
}

@font-face {
  font-family: 'TRIAL FactorA ExtraBold';
  src: url('./assets/fonts/Trial_FACTOR/TRIAL_FactorA-Extrabold.otf') format('woff');
  font-weight: 600;
}

@font-face {
  font-family: 'TRIAL FactorA Medium';
  src: url('./assets/fonts/Trial_FACTOR/TRIAL_FactorA-Medium.otf') format('woff');
}

@font-face {
  font-family: 'TRIAL FactorA Black';
  src: url('./assets/fonts/Trial_FACTOR/TRIAL_FactorA-Black.otf') format('woff');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background-image: url("./assets/img/background-main.png");
  background-size: cover;
  background-position: center -90px;
  background-repeat: repeat;
  background-attachment: fixed;
  z-index: -1;
}

/* Шапка */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--secondary-color);
  background-image: url("./assets/img/background.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

header.show {
  border-bottom: 1px solid #e9e9e9;
  box-shadow: none;
}

header.scrolled {
  background-color: var(--background-color);
  padding: 10px 5%;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 0;
}

.logo-img {
  height: 70px;
  width: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent-color);
  cursor: pointer;
}

.register-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: 15px;
  display: flex;
  text-align: center;
  padding: 8px 12px;
  background-color: var(--primary-color);
  color: var(--background-color);
  border: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.register-link:hover {
  background-color: var(--accent-color);
  color: var(--background-color);
  cursor: pointer;
}

@media (max-width: 900px) {
  nav a {
    margin-left: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 23px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #10002b;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Основные секции */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--primary-color);
}

/* Мобильное меню */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-image: url("./assets/img/background.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #e9e9e9;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.mobile-menu.show {
  display: flex;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--text-color);
  text-decoration: none;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .register-link {
  display: block;
  margin: 0;
  padding: 10px 16px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 25px;
  max-width: fit-content;
  box-sizing: border-box;
  transition: background 0.2s;
}

.mobile-menu .register-link:hover {
  background-color: var(--accent-color);
  color: var(--background-color);
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}

#main {
  padding: 65px 0 100px 0;
}

.main-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-container picture {
  width: 100%;
}

.main-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #main {
    padding: 100px 0 20px 0;
  }
}

.register-btn {
  margin-top: -12.5%;
  margin-right: -30%;
  padding: 1.5% 3.125%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  border-radius: 55px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: var(--accent-color);
}

@media (max-width: 1000px) {
  .register-btn {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .register-btn {
    margin-top: -45%;
    margin-right: 0;
    font-size: 1.25rem;
    padding: 15px 36px;
  }
}

/* Заголовок */
.container-title {
  font-family: 'TRIAL FactorA';
  display: flex;
  justify-self: center;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 35px;
}

/* О форуме */
#about {
  position: relative;
  padding: 30px;
}

.about-container {
  opacity: 1;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  justify-self: center;
  gap: 40px;
  width: 95%;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.section-left {
  width: 650px;
  position: relative;
  background: #e6e6e6;
  border-radius: 50px;
  padding: 80px 30px;
  overflow: hidden;
}

.section-left::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -150px;
  width: 800px;
  height: 800px;
  background-image: url("/assets/img/cabbage_4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
}

.section-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0px;
  row-gap: 55px;
  padding: 48px 20px;
}

/* Типографика */
.section-title {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 13px;
  row-gap: 25px;
  line-height: 1.2;
  z-index: 1;
}

.section-title span {
  display: block;
}

.section-letter {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 65px;
  line-height: 1;
  align-self: end;
  justify-self: end;
  margin-bottom: -5px;
}

.section-text {
  font-size: 21px;
  font-weight: 400;
  align-self: end;
}

.section-text:nth-of-type(4) {
  margin-bottom: -25px;
}

.section-text:nth-of-type(6) {
  margin-top: 55px;
}

.section-text:nth-of-type(8) {
  margin-bottom: -25px;
}

.info-block {
  max-width: 280px;
}

.info-block h3 {
  font-family: 'TRIAL FactorA ExtraBold';
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 30px;
}

.info-block p {
  font-family: 'TRIAL FactorA Medium';
  font-size: 16px;
  color: var(--primary-color);
  line-height: 1.05;
  width: 280px;
}

.section-meaning {
  font-family: 'TRIAL FactorA ExtraBold';
  text-align: center;
  font-size: 26px;
  margin: 125px 150px;
  line-height: 1.3;
  color: #333;
}

/* Статистика */
.section-stats {
  width: 75%;
  justify-self: center;
  position: relative;
  background: #fff;
  border-radius: 50px;
  padding: 60px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.section-stats::before {
  content: "";
  position: absolute;
  right: -250px;
  bottom: -350px;
  width: 800px;
  height: 800px;
  background-image: url("./assets/img/cabbage.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.stats-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.stats-column:last-of-type {
  margin-left: 75px;
}

.stat-item {
  display: flex;
  gap: 20px;
}

.stat-number {
  font-family: 'TRIAL FactorA ExtraBold';
  display: block;
  font-size: 65px;
  letter-spacing: 3px;
  color: #000;
}

.stat-text {
  align-self: center;
  font-family: 'TRIAL FactorA Medium';
  display: flex;
  font-size: 26px;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.6px;
}

@media (max-width: 1200px) {
  .section-top {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 20px;
  }

  .section-left {
    width: 100%;
    padding: 20px;
  }

  .section-right {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    row-gap: 60px;
    column-gap: 0;
  }

  .section-left {
    padding: 60px 10px;
  }

  .section-text {
    font-size: 16px;
  }

  .section-text:nth-of-type(2) {
    margin-bottom: -20px;
  }

  .section-text:nth-of-type(4) {
    margin-top: 60px;
    margin-bottom: -20px;
  }

  .section-text:nth-of-type(6) {
    margin-top: 60px;
  }

  .section-text:nth-of-type(8) {
    margin-bottom: -20px;
  }

  .info-block {
    justify-self: center;
  }

  .section-meaning {
    width: 100%;
    margin: 60px 0px;
    padding: 0 40px;
    font-size: 22px;
    line-height: 1.4;
  }

  .section-stats {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 40px;
    border-radius: 30px;
    gap: 15px;
  }

  .stats-column:last-of-type {
    margin: 0;
  }

  .stat-number {
    font-size: 50px;
  }

  .stat-text {
    font-size: 20px;
  }
}

@media (max-width: 800px) {
  #about {
    margin-top: 35%;
    padding: 20px 0 60px 0;
  }

  .section-top {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 20px;
  }

  .section-left {
    width: 100%;
    padding: 20px;
  }

  .section-right {
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
  }

  .section-left {
    padding: 60px 10px;
  }

  .section-text {
    font-size: 16px;
  }

  .section-text:nth-of-type(2) {
    margin-bottom: -20px;
  }

  .section-text:nth-of-type(4) {
    margin-top: 60px;
    margin-bottom: -20px;
  }

  .section-text:nth-of-type(6) {
    margin-top: 60px;
  }

  .section-text:nth-of-type(8) {
    margin-bottom: -20px;
  }

  .section-right {
    grid-template-columns: 1fr;
    row-gap: 60px;
    column-gap: 0;
  }

  .info-block {
    justify-self: center;
  }

  .section-meaning {
    width: 100%;
    margin: 60px 0px;
    padding: 0 40px;
    font-size: 22px;
    line-height: 1.4;
  }

  .section-stats {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 40px;
    border-radius: 30px;
    gap: 15px;
  }

  .stats-column:last-of-type {
    margin: 0;
  }

  .stat-number {
    font-size: 50px;
  }

  .stat-text {
    font-size: 20px;
  }
}

/* ВИДЕО */
#video {
  padding: 20px 20px 80px 20px;
}

.video-wrapper {
  position: relative;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: transparent;
  border: none;
  border-radius: 30px;
  overflow: hidden;
}

/* Стили для Plyr плеера */
.plyr {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.plyr__video-wrapper {
  height: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  height: 100%;
}

@media (max-width: 768px) {
  #video {
    padding: 20px 10px 60px 10px;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .plyr {
    max-height: none;
  }
}

/* СПИКЕРЫ */
#speakers {
  padding: 20px 20px 80px 20px;
}

#speakers .container {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

#speakers .container-title {
  justify-content: center;
}


.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.speaker-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 30px;
  gap: 24px;
}

.speaker-item img {
  height: 15em;
  aspect-ratio: 5 / 6;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}

.speaker-info h3 {
  margin: 0 0 8px;
  font-family: 'TRIAL FactorA Black';
  font-size: 1.215rem;
  font-weight: 400;
  color: #333;
}

.speaker-info .position {
  margin: 0;
  font-family: 'TRIAL FactorA Medium';
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #speakers {
    padding: 20px 20px 60px 20px;
  }

  #speakers .container {
    width: 100%;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .speaker-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .speaker-item img {
    margin-bottom: 10px;
    height: 12em;
  }

  .speaker-info h3 {
    font-size: 18px;
  }

  .speaker-info .position {
    font-size: 14px;
  }
}

/* Программа */
#program {
  position: relative;
  padding: 20px 20px 80px 20px;
}

#program .container {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

#program .container-title {
  justify-content: center;
}

.rooms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  gap: 10px;
  margin-bottom: 40px;
}

.room-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 12px 10px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  flex: 1;
  min-width: 150px;
  max-width: 250px;
  font-family: 'TRIAL FactorA Black';
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.room-btn:hover {
  cursor: pointer;
  transform: translateY(-4px);
}

.room-btn.active {
  background: var(--primary-color);
}

/* Скрытие/показ контента помещений */
.room-content {
  display: none;
}

.room-content.active {
  display: block;
}

.room-content {
  display: none;
}

.room-content.active {
  display: block;
}

/* Карточки программы */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.program-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 35px;
  padding: 20px;
  min-height: 120px;
  gap: 40px;
}

.time {
  font-family: 'TRIAL FactorA';
  font-size: 1.125rem;
  font-weight: 200;
  width: 120px;
  flex-shrink: 0;
}

.program-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.speakers-description {
  font-family: 'TRIAL FactorA';
  font-size: 0.875rem;
  font-weight: 200;
}

/* Адаптив */
@media (max-width: 768px) {
  #program {
    padding: 20px 20px 60px 20px;
  }

  #program .container {
    width: 100%;
  }

  .program-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 5px;
  }

  .time {
    width: 100%;
    font-size: 0.975rem;
  }

  .title {
    font-size: 0.975rem;
  }

  .room-btn {
    font-size: 14px;
  }
}

/* Место проведения */
#location {
  position: relative;
  padding: 20px 20px 80px 20px;
}

.location-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.location-info.text-center {
  text-align: center;
  margin-bottom: 30px;
}

.location-address {
  font-family: 'TRIAL FactorA Medium';
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.location-address i {
  margin-right: 10px;
  margin-left: 10px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.map-container-full {
  display: flex;
  justify-self: center;
  width: 60%;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

.map-container-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  #location {
    padding: 20px 20px 60px 20px;
  }

  .map-container-full {
    width: 95%;
  }
}

/* Спонсоры */
#sponsors {
  position: relative;
  padding: 20px 180px 40px 180px;
}

.sponsors-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#sponsors h3 {
  font-family: var(--main-font-bold);
  font-size: 36px;
  font-weight: 300;
}

.sponsors-block {
  display: block;
}

.light-text {
  color: var(--primary-color);
}

.sponsors-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: left;
  color: #333;
}

.sponsors-logos {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sponsors-logos img {
  height: 70px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.sponsors-block:first-of-type .sponsors-logos img {
  height: 50px;
}

.sponsors-block:last-of-type .sponsors-logos img {
  height: 30px;
}

/* Адаптивность */
@media (max-width: 768px) {
  #sponsors {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
  }

  .sponsors-title {
    margin-left: 35px;
  }

  #sponsors h3 {
    font-size: 24px;
  }

  .sponsors-logos {
    height: fit-content;
    justify-content: space-evenly;
    padding: 30px 25px;
    gap: 50px;
  }

  .sponsors-title {
    font-size: 18px;
    text-align: left;
  }
}

/* Регистрация */
#register {
  color: var(--secondary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.registration-container {
  display: block;
  justify-self: center;
  align-self: center;
  width: 60%;
  padding: 180px 0;
}

#register form {
  display: flex;
  flex-direction: column;
  justify-self: center;
  width: 100%;
  margin-bottom: 100px;
}

#register input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

#register input:focus {
  border-color: var(--primary-color);
  outline: none;
}

#register button {
  padding: 25px 60px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.25rem;
  text-transform: uppercase;
}

#register button:hover {
  cursor: pointer;
  background-color: var(--accent-color);
}

@media (max-width: 768px) {
  .registration-container {
    width: 90%;
  }

  #register form {
    width: 95%;
  }
}

/* Футер */
footer {
  background-image: url("./assets/img/background.png");
  background-size: cover;
  background-position: center;
  color: var(--secondary-color);
  padding: 20px;
  text-align: center;
  border-top: 1px solid #e3e3e3;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Контакты */
.contacts {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.contacts a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts a:hover {
  color: #005999;
}

/* Соцсети */
.social {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.social-icons {
  display: flex;
  align-items: center;
}

/* Иконки */
.icon {
  display: block;
  height: 40px;
  margin-left: 16px;
  transition: background 0.3s;
  width: 40px;
}

/* Пути к локальным SVG-файлам */
.vk {
  background-image: url("assets/img/social-sites/vk-icon.svg");
}

.vk:hover {
  background-image: url("assets/img/social-sites/vk-hover-icon.svg");
}

.tg {
  background-image: url("assets/img/social-sites/tg-icon.svg");
}

.tg:hover {
  background-image: url("assets/img/social-sites/tg-hover-icon.svg");
}

@media (max-width: 768px) {
  .social {
    justify-content: flex-start;
  }

  .icon {
    margin-left: 0;
    margin-right: 16px;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  h2 {
    font-size: 2rem;
  }

  #registrationForm {
    padding: 0 20px;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  input,
  button,
  textarea {
    font-size: 16px;
  }
}