.main {
  color: white;
  background-image: url("../img/home_bg.png");
  box-shadow: inset 2000px 0 0 0 rgba(0, 0, 0, 0.5); /* Reference link: https://codepen.io/gc-nomade/pen/wouBe */
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 50px;
  display: flex;
  height: calc(100vh - 100px);
}

.main__left {
  margin-left: 10%;
  align-self: center;
  margin-right: 3em;
}

.main__right {
  margin-left: 3em;
  align-self: center;
  margin-right: 10%;
}

.main__heading {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 5em;
}

.main__text {
  font-family: "Libre Caslon Text", sans-serif;
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 2em;
}

.main__logo {
  width: 300px;
  height: auto;
}

.main__icons {
  width: 300px;
  display: flex;
  align-self: center;
  justify-content: space-between;
  padding: 0 30px;
}

.main__icons > img {
  width: 30px;
  height: auto;
}

.menu__link {
  font-family: Roboto, sans-serif;
  font-size: 1em;
  border: 2px solid white;
  color: black;
  background-color: white;
  padding: 0.8em 2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.menu__link:hover {
  color: black;
  cursor: pointer;
  text-decoration: none;
}

.m-main {
  color: white;
  background-image: url("../img/home_bg.png");
  box-shadow: inset 2000px 0 0 0 rgba(0, 0, 0, 0.5); /* Reference link: https://codepen.io/gc-nomade/pen/wouBe */
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 50px;
  display: flex;
  height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-main__logo {
  align-self: center;
  width: 300px;
  height: auto;
}

.m-main__heading {
  align-self: center;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 2em;
}

.m-menu__link {
  align-self: center;
  width: 180px;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .main__heading {
    font-size: 4em;
  }

  .main__text {
    font-weight: 500;
    font-size: 1em;
  }

  .main__logo {
    width: 240px;
  }

  .main__icons {
    width: 240px;
  }

  .main__icons > img {
    width: 27px;
  }
}

@media only screen and (max-width: 850px) {
  .main__heading {
    font-size: 3em;
  }

  .main__text {
    font-weight: 500;
  }

  .main__logo {
    width: 180px;
  }

  .main__icons {
    width: 180px;
    padding: 0 20px;
  }

  .main__icons > img {
    width: 22px;
  }
}

@media only screen and (max-width: 680px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .menu__link {
    width: 12em;
  }
}
