/*--------------------
Reset & body
--------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  background: #100F1D;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.4;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: linear-gradient(42deg, #070c18, #1f141c);
  opacity: 0.9;
}

/*--------------------
Landing
--------------------*/
.landing {
  position: relative;
  z-index: 2;
  width: 990px;
  height: 600px;
  margin: 15px auto;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.landing .back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 150px;
  color: #082352;
  background: #FEDF9D;
}
.landing .cat {
  position: absolute;
  z-index: 3;
  padding: 0px;
  right: -230px;
  bottom: -15;
  width: 75%;
  height: 85%;
  font-size: 55px;
}

/*--------------------
Copy
--------------------*/
.copy {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.copy .title {
  padding: 0;
  font-size: 70px;
  text-align: center;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
  background-color: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.copy .text {
  color: black;
  font-size: 25px;
  text-align: center;
  margin-bottom: 0px;
}
.copy .cta {
  cursor: pointer;
  margin-top: 10px;
  background: #EB4537;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
  padding: 10px 30px;
  font-weight: 600;
}