* {
  box-sizing: border-box;
  margin: 0;
}

body {
  overflow-x: hidden;
  background-color: #000000;
  font-family: "Roboto", serif;
  font-weight: bold;
}

.main-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.main-banner-mobile {
  display: none;
}

.main-banner-desktop {
  display: flex;
}

.main-banner-desktop img,
.main-banner-mobile img {
  width: 100%;
  height: 100%;
}

.main-banner-desktop {
  position: relative;
}

.main-banner-desktop div,
.main-banner-mobile div {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  text-align: center;
}

.main-banner-desktop div a,
.main-banner-mobile div a {
  color: #c602cd;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0px 0px 0px 1.2px #c602cd inset;
  padding: 12px 36px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.main-banner-desktop div a:hover,
.main-banner-mobile div a:hover {
  background-color: #c602cd;
  color: #ffffff;
}

@media only screen and (max-width: 1400px) {
  .main-banner-desktop div {
    bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .main-banner-mobile {
    display: flex;
  }

  .main-banner-mobile div {
    top: 30rem;
  }

  .main-banner-desktop {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .main-banner-mobile div {
    top: 15rem;
  }
}
