@import url('./bootstrap-reboot.min.css');
@import url('./bootstrap-grid.min.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Roboto:wght@400;700&display=swap');

body {
  background-color: #efefef;
}

.title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 26px;
  text-align: center;
}

.subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.title2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 32px 44px;
  margin: 32px 0;
  width: 100%;
}

.redText {
  color: #ff0000;
}

.bgYellow {
  background-color: #f9d71c;
}

.bttn {
  height: 62px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00ce78;
  border-radius: 32px;
  border: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  font-family: sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.bttn:hover {
  color: #fff;
  background-color: #00ba69;
}

@media screen and (max-width: 579px) {
  body {
    background-color: #fff;
  }

  .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    padding: 0 0 8px 0;
    margin: 32px 0;
  }

  .bttn {
    font-size: 14px;
  }
}
