* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
}

.hide {
  display: none;
}

body {
  background-image: url("../img/wheatfield.jpg");
  display: block;
  background-repeat: no-repeat;
}

/*sec_9999*/

.sec_9999 {
  width: 70vw;
  max-width: 2000px;
  min-width: 300px;
  height: 10vh;
  min-height: 40px;
  max-height: 120px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

/* sec_0000 */

.sec_0000 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec_0000 .content {
  width: 50vw;
  min-width: 250px;
  height: 40vh;
  min-height: 400px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  background-color: #462c0c9a;
  border-radius: 5px;
  box-shadow: 0px 0px 7px rgba(66, 66, 66, 0.3);
  box-shadow: 50px;
  -webkit-box-shadow: 5px 5px 50px -2px rgba(94, 94, 94);
  box-shadow: 5px 5px 50px -2px rgba(94, 94, 94);

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
}

.txt {
  margin: 1rem;
/*   outline: 2px dashed red; */
}

.title {
  width: 100%;
  white-space: normal;
  text-align: center;
  font-size: 35px;
  margin-bottom: 2rem;
  text-decoration: underline;
}

.bbtn {
  margin: 2rem;
/*   outline: 2px dashed blue !important; */
}

.back {
  width: auto;
  background-color: rgb(247, 88, 88);
  color: #ffffff;
  border-style: none;
  border-radius: 5px;
  box-shadow: 0px 0px 7px rgba(66, 66, 66, 0.34);
  text-shadow: 0px 0px 0px rgba(66, 66, 66, 0.75);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  padding: 8px;
  position: absolute;
  left: 3rem;
}
.back:hover {
  background-color: red;
}

@media (max-width: 750px) {
  .sec_0000 .content {
    width: 100%;
    border-radius: 0px;
  }
}

/*
.##........########...#####..
.##....##..##........##...##.
.##....##..##.......##.....##
.##....##..#######..##.....##
.#########.......##.##.....##
.......##..##....##..##...##.
.......##...######....#####..
*/

@media (max-width: 450px) {
  .title {
    font-size: 1.5rem;
  }

  .txt p {
    font-size: 0.8rem;
  }
}


/*
..#######..########...#####..
.##.....##.##........##...##.
........##.##.......##.....##
..#######..#######..##.....##
........##.......##.##.....##
.##.....##.##....##..##...##.
..#######...######....#####..
*/

@media (max-width: 350px) {
  body {
    background-image: none;
    background-color: white;
  }

  section {
    display: none !important;
    visibility: hidden;
    overflow: hidden !important;
  }

  .too_small {
    z-index: 99999 !important;
    width: 100%;
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    visibility: visible;
    padding: 2vh 0;
  }

  .too_small p {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
    background-color: red;
    padding: 10px;
  }
}

.too_small {
  z-index: 0 !important;
  display: none;
}