@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: left;
  background-color: #f7f7f7;
}

.homeText {
  text-align: center;
  padding: 50px 10px 50px 10px;
}
.homeText h1 {
  font-family: "Shadows Into Light Two", sans-serif;
  font-size: 120px;
}
@media only screen and (max-width: 700px) {
  .homeText h1 {
    font-size: 80px;
  }
}
.homeText p {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
}
@media only screen and (max-width: 700px) {
  .homeText p {
    font-size: 30px;
  }
}

header {
  text-align: center;
  margin: 0;
  background: black;
}
@media only screen and (max-width: 799px) {
  header {
    padding: 20px 0 20px 0;
  }
}
@media only screen and (min-width: 800px) {
  header {
    padding: 40px 0 40px 0;
  }
}
header img {
  width: 100%;
}

/*************************NAVIGATION************************/
.nav-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: fixed;
}
.nav-bar .menu-bars {
  cursor: pointer;
  transition: background 0.3s;
  color: rgb(50, 50, 50);
  display: block;
  padding: 0 1.5% 0.25% 1.5%;
  text-align: left;
  font-size: 2.25rem;
}
@media only screen and (min-width: 800px) {
  .nav-bar .menu-bars {
    display: none;
  }
}
.nav-bar .nav-ul {
  background: rgb(50, 50, 50);
  list-style: none;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .nav-bar .nav-ul {
    display: flex;
    justify-content: center;
  }
}
.nav-bar .nav-ul li {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  display: block;
  z-index: 100;
  font-size: 1rem;
}
@media only screen and (min-width: 800px) {
  .nav-bar .nav-ul li {
    display: inline-flex;
    position: relative;
  }
}
.nav-bar .nav-ul li a {
  display: block;
  padding: 10px 25px;
  text-decoration: none;
  margin: 0;
  color: black;
}
.nav-bar .nav-ul li a:hover {
  color: rgb(0, 0, 0);
  background-color: #656565;
}

.nav-ul,
[id^=toggle] {
  display: none;
}

[id^=toggle]:checked + .nav-ul {
  display: block;
}

button {
  border: solid rgb(0, 0, 0);
  padding: 20px;
  margin: 10px auto;
  width: 80%;
  max-width: 500px;
  background-color: black;
  font-weight: bold;
  color: white;
  font-size: 1.5em;
  font-family: "Raleway", sans-serif;
}
button:link {
  text-decoration: none;
}
button:visited {
  color: white;
}
button:hover {
  color: black;
  cursor: pointer;
  background-color: #333333;
}
button:active {
  color: black;
}

.row {
  padding: 2%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin: 0 auto;
}

/**********************FOOTER***************************/
#footer {
  background-color: black;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 900px) {
  #footer {
    flex-direction: row;
  }
}
#footer .footer-col1 {
  text-align: center;
}
@media (min-width: 900px) {
  #footer .footer-col1 {
    padding: 10px;
    text-align: right;
  }
}
#footer .footer-col2 {
  padding: 10px;
  text-align: center;
}
@media (min-width: 900px) {
  #footer .footer-col2 {
    text-align: left;
    padding: 0px 0 0 40px;
  }
}
#footer #footerspan {
  display: block;
}
@media only screen and (min-width: 400px) {
  #footer #footerspan {
    display: none;
  }
}
#footer p {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  line-height: 1.1rem;
  color: #656565;
}
@media only screen and (min-width: 600px) {
  #footer p {
    font-size: 1rem;
  }
}
#footer p a:link {
  color: #656565;
  text-decoration: none;
  font-weight: normal;
}
#footer p a:visited {
  color: #656565;
}
#footer p a:hover {
  color: #333333;
}
#footer p a:active {
  color: #656565;
}

.fa {
  width: 2px;
  text-align: left;
  text-decoration: none;
  color: rgb(50, 50, 50);
}

.fa:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */