body {
  font-size: 1.125rem;
  margin: 40px;
  background-color: #0b0b0b;
}

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

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

/* TEXT STYLING */

.main-title {
  font-family: "Sora", sans-serif;
  font-size: 100px;
  font-weight: 800;
  color: #f1f1f1;
  text-align: center;
  margin: 0 auto;
  max-width: 80%;
  margin-bottom: 40px;
  margin-top: 40px;
}

.sub-heading {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #f1f1f1;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 58px;
}

/* BUTTON STYLING */

.btn-Twitter {
  width: 137.36px;
  height: 55px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 55px;
  border: none;
  border-radius: 9px;
  background-color: #f1f1f1;
  color: #0b0b0b;
  text-decoration: none;
  transition: all 0.11s ease;
  cursor: pointer;
  margin-right: 25px;
}

.btn-Twitter:active {
  transform: scale(0.9);
}

.btn-Youtube {
  width: 137.36px;
  height: 55px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 55px;
  border: none;
  border-radius: 9px;
  background-color: #f1f1f1;
  color: #0b0b0b;
  text-decoration: none;
  transition: all 0.11s ease;
  cursor: pointer;
  margin-right: 25px;
}

.btn-Youtube:active {
  transform: scale(0.9);
}

.btn-Behance {
  width: 137.36px;
  height: 55px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 55px;
  border: none;
  border-radius: 9px;
  background-color: #f1f1f1;
  color: #0b0b0b;
  text-decoration: none;
  transition: all 0.11s ease;
  cursor: pointer;
  margin-right: 25px;
}

.btn-Behance:active {
  transform: scale(0.9);
}

.btn-Store {
  width: 137.36px;
  height: 55px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 55px;
  border: none;
  border-radius: 9px;
  background-color: #f1f1f1;
  color: #0b0b0b;
  text-decoration: none;
  transition: all 0.11s ease;
  cursor: pointer;
  margin-right: 25px;
}

.btn-Store:active {
  transform: scale(0.9);
}

/* FOR TABLET */

@media (max-width: 768px) {
  .main-title {
    font-size: 60px;
  }

  .sub-heading {
    font-size: 18px;
    padding: 0 10px;
  }

  button {
    width: 120px;
    height: 50px;
    font-size: 13px;
  }

  body {
    margin: 20px;
  }

  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px 25px;
  }
}

/* FOR MOBILE */

@media (max-width: 480px) {
  .main-title {
    font-size: 37px;
  }

  .sub-heading {
    font-size: 15px;
  }

  button {
    width: 100%;
    max-width: 250px;
    height: 50px;
    font-size: 13px;
    margin: 10px;
  }

  .button-container {
    margin-left: 27.5%;
  }
}
