/* Reset */
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}

:root {
  --primary-color: #F7BE16;
}

.comingSoon {
  background-image: url("./img/mberplus_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comingSoon__container {
  width: 100%;
  max-width: 902px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.comingSoon__logo {
  margin-bottom: 66px;
  max-width: 500px;
}

.comingSoon__heading {
  font-weight: bold;
  text-align: center;
  font-size: 45px;
  line-height: 80px;
  color: var(--primary-color);
}
.comingSoon__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 58px;
  word-spacing: 4px;
  text-align: center !important;
}
.comingSoon__contact {
  border: 1px solid var(--primary-color);
  width: 100%;
  min-height: 24px;
  border-radius: 16px;
  font-weight: 400;
  font-size: 28px;
  line-height: 76px;
  text-align: center;
  display: block;
}
.comingSoon__email {
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

@media only screen and (max-width: 992px) {
  .comingSoon__heading {
    font-size: 110px;
    line-height: 110px;
  }
}

@media only screen and (max-width: 576px) {
  .comingSoon__logo {
    margin-bottom: 30px;
  }
  .comingSoon__heading {
    font-size: 40px;
    line-height: 40px;
  }
  .comingSoon__title {
    font-size: 14px;
    line-height: 26px;
  }
  .comingSoon__contact {
    font-size: 14px;
    line-height: 24px;
    margin: 10px;
    padding: 10px;
  }
}


