/* Base Reset */
@font-face {
    font-family: 'strike_fighterregular';
    src: url('../fonts/strikefighter-9o6y-webfont.woff2') format('woff2'),
         url('../fonts/strikefighter-9o6y-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: sans-serif;
}

/* Container */
.hero {
  width: 100vw;
  height: 100vh;
  background: url('../img/planes.jpg') no-repeat center center / cover;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 2rem;
	text-shadow: 1px 1px 2px #000000;
}

/* Text Content */
.hero-text {
  text-align: right;
  color: #fff;
	padding-right:5%;
	padding-bottom:5%;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
	font-family: 'strike_fighterregular';
	letter-spacing:15px;
}

.hero-text h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: normal;
	font-family: "Oxanium", sans-serif;
	letter-spacing:10px;
}

.hero-text a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
	font-family: "Oxanium", sans-serif;
}

/* Tablet Landscape or Small Desktop: Background opacity to 75% */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
 
  background: url('../img/planes-land.jpg') no-repeat center center / cover;
  
}
	.hero-text {
	padding-right:3%;
	padding-bottom:5%;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
}

/* Mobile/Tablet Portrait */
@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    background-image: url('../img/planes-mob.jpg');
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    text-align: center;

	padding-right:0%;
	padding-bottom:15%;
}

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text h2 {
    font-size: 1rem;
  }

  .hero-text a {
    font-size: 0.9rem;
  }
}
