* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFE6AD;
  font-family: 'Yeseva One', cursive;
}

.hero {
  position: relative;
  /* background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-clip: content-box;
  width: 100%;
  height: 1000px; */
}

.hero .cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-size: 3em;
  color: #FBFBFB;
  text-shadow: 0 0 100px lightgray;
}

.hero a {
  text-decoration: none;
}

.hero button {
  width: 200px;
  height: 50px;
  /* border-radius: 20px; */
  border: none;
  background-color: #E11022;
  color: #FBFBFB;
  font-size: 20px;
  font-family: 'Comfortaa', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 20px;
}

.hero button:hover {
  background-color: #961d1d;
  cursor: pointer;
  /* margin: -2000px; */
}

.nav {
  position: fixed;
  top: 0;
  list-style: none;
  font-size: 1.5em;
  width: 100%;
  height: 100px;
  background-color: #D07F40;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav li a {
  color: #FBFBFB;
  text-decoration: none;
}

.nav li a:hover {
  color: #E11022;
}

.section-one, .section-two {
  display: flex;
  margin: 30px;
}

.section-one div, .section-two div {
  padding: 30px;
}

.section-one div h2, .section-two div h2 {
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-one div p, .section-two div p {
  font-family: 'Comfortaa', cursive;
  line-height: 1.5;
  height: 400px;
  overflow: auto;
}

.section-two {
  padding-bottom: 200px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hero {
    margin-top: -1000px;
  }

  .bg-img-big {
    display: none;
  }

  .bg-img-small {
    display: block;
  }

  .section-one, .section-two {
    display: flex;
    margin: 0;
  }

  section img {
    width: 100%;
  }

  .section-one .left {
    order: 1;
  }

  .section-one .right {
    order: 0;
  }

  .navbar {
    display: flex;
  }

  .nav {
    display: none;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .bg-img-big {
    display: none;
  }

  .bg-img-small {
    display: block;
  }

  .section-one, .section-two {
    flex-direction: column;
    margin: 0;
  }

  section img {
    /* width: 100%; */
  }

  .section-one .left {
    order: 1;
  }

  .section-one .right {
    order: 0;
  }

  .navbar {
    display: flex;
  }

  .nav {
    display: none;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .bg-img-big {
    display: none;
  }

  .bg-img-small {
    display: block;
  }

  .section-one, .section-two {
    flex-direction: column;
    margin: 0;
  }

  section img {
    /* width: 100%; */
  }

  .navbar {
    display: flex;
  }

  .nav {
    display: none;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .bg-img-big {
    display: none;
  }

  .bg-img-small {
    display: block;
  }

  .section-one, .section-two {
    flex-direction: row;
    margin: 0;
  }

  section img {
    /* width: 100%; */
  }

  .navbar {
    display: flex;
  }

  .nav {
    display: none;
  }
}

@media only screen and (orientation: portrait) {
  .section-one, .section-two {
    /* flex-direction: row; */
    /* margin: 0; */
  }

  section img {
    width: 100%;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .bg-img-big {
    display: block;
  }

  .bg-img-small {
    display: none;
  }

  .section-one, .section-two {
    flex-direction: row;
    margin: 0;
  }

  section img {
    /* width: 100%; */
  }

  .section-one .left {
    order: 0;
  }

  .section-one .right {
    order: 1;
  }

  .navbar {
    display: none;
  }

  .nav {
    display: flex;
  }
}
