* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
}

.container {
  display: grid;
  grid-template-areas:
    "hero about"
    "hero contact";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100vh;
}

.hero {
  grid-area: hero;
  background: url(../img/hero.JPG) top center no-repeat;
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 0 10px 2px #4a4a4a;
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  color: white;
  /* text-shadow: 0 6px 8px #2b2a2a; */
}

.intro {
  position: relative;
  top: 62%;
  left: 10%;
  text-align: left;
  font-weight: 500;
  font-size: 2.5rem;
}

.lead {
  position: relative;
  top: 61%;
  text-align: center;
  font-size: 5rem;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

.sublead {
  position: relative;
  top: 60%;
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

.lead a {
  text-decoration: none;
  color: rgb(216, 104, 4);
  transition: all 0.2s ease;
}

.lead a:hover {
  font-size: 4.9rem;
}

.about {
  grid-area: about;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  text-align: center;
  justify-self: center;
  align-self: center;
  min-height: 50%;
  margin-top: 13%;
}

.keywords {
  font-size: 2rem;
  font-weight: 800;
  text-align: left;
  padding: 0 20px;
  margin-top: 10%;
  color: rgb(216, 104, 4);
  text-shadow: 0 2px 1px #4a4a4a;
}

.statement {
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10%;
  padding: 0 20px;
  max-width: 500px;
  color: #4a4a4a;
}

.statement a {
  text-decoration: none;
  color: rgb(216, 104, 4);
  transition: all 0.2s ease;
}

.statement a:hover {
  font-size: 0.9rem;
}

.contact {
  grid-area: contact;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  text-align: center;
  justify-self: center;
  align-self: center;
  color: #4a4a4a;
  font-weight: 300;
  width: 100%;
  min-height: 50vh;
  margin-top: 10%;
  border-bottom: 10px solid rgb(216, 104, 4);
}

.contact p {
  text-transform: capitalize;
  font-size: 1.5rem;
  padding-bottom: 5px;
  margin-top: 18%;
}

.idiom {
  font-size: 1rem;
}

.contact i {
  margin-top: 15px;
  margin-bottom: 10%;
  font-size: 2.5rem;
  padding: 0 10px;
  text-shadow: 0 2px 1px #4a4a4a;
  transition: all 0.2s ease;
}
.contact i:hover {
  transform: scale(0.9);
  color: rgb(216, 104, 4);
  cursor: pointer;
}

.contact a {
  text-decoration: none;
  color: #4a4a4a;
}

.copywrite {
  font-size: 0.9rem;
  margin-top: 100px;
}

.copywrite a {
  font-size: 0.7rem;
}

.disclaimer {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  margin: 20px;
  justify-content: center;
  align-items: center;
}
.disclaimer h1,
p,
h2 {
  margin-bottom: 15px;
}

.disclaimer a {
  text-decoration: none;
  color: #4a4a4a;
  padding: 5px;
  border: 1px solid #4a4a4a;
  border-radius: 2px;
}

.disclaimer a:hover {
  font-size: 0.8rem;
}

.disclaimer a:active {
  color: green;
  border-color: green;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  html {
    font-size: 14px;
  }
  .container {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  .hero {
    min-height: 100vh;
    align-items: bottom;
  }
  .intro {
    font-size: 1.3rem;
  }
  .lead {
    font-size: 3.3rem;
    margin: 0 20px;
  }
  .sublead {
    font-size: 1rem;
    margin-bottom: 10%;
  }
  .statement {
    margin-bottom: 10%;
  }
}
