* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 100vh;
  font-family: proxima-nova, sans-serif;
  background-image: url(assets/DESKTOP-BG.jpg);
  background-size: cover;
  background-color: #420263
}

.fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: linear-gradient(180deg, #0E1B30 21.49%, rgba(14, 27, 48, 0) 93%);
  z-index: -1;
}

a {
  text-decoration: none;
  color: white;
}

.main-container {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.logo-container {
  margin-bottom: 32px;
  text-align: center;
}

.main-text-container {
  margin-bottom: 20px;
  text-align: center;
}
.main-text-container p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
}
.main-text-container h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}

.ctas-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cta-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  flex-basis: 240px;
}
.cta-container p {
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
}
.cta-featured {
  display: inline;
  width: 100%;
  background-color: rgba(14, 27, 49, 0.6);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 24px;
  margin-bottom: 60px;
  flex-basis: auto;
}
.cta-featured p {
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
.divider {
  border-left: 1px solid white ;
  margin: 30px 10px;
}
.cta-logo {
  height: 40px;
}
.cta-featured-logo {
  width: 100%;
  max-width: 124px;
}
.cta-button {
  color: rgba(0, 0, 0, 0.87);
  display: -webkit-inline-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  position: relative;
  height: 2.5rem;
  font-family: proxima-nova, sans-serif;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.12) 0 -3px 0 inset;
  background: rgb(254, 210, 5);
  padding: 0 1.25rem;
  outline: none;
  text-decoration: none;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 0.45rem;
}
.cta-link {
  color: rgba(254, 210, 5, .87);
  font-weight: normal;
  font-style: normal;
  _font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  body {
    background-image: url(assets/MOBILE-BG.jpg);
  }
  .logo-container {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .logo-container img {
    width: 170px;
  }
  .main-text-container {
    padding: 0 20px;
  }
  .main-text-container p {
    font-size: 16px;
  }
  .main-text-container h2 {
    margin: 35px 0;
  }
  .ctas-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .cta-container {
    margin-bottom: 60px;
    flex-basis: auto;
  }
  .cta-featured-container img {
    width: 200px;
  }
  .divider {
    display: none;
  }
}
