body {
  box-sizing: border-box;
  background: url(../images/nasa-OVO8nK-7Rfs-unsplash-min.jpg);
  color: orange;
}

@media screen and (min-width: 498px) {
  body {
    background-size: 110%;
  }
}

p {
  font-size: 18px;
}

.text-bold {
  font-weight: bold;
}

.text-italics {
  font-style: italic;
}

.text-small {
  font-size: small;
  font-weight: bold;
}

.text-big {
  font-size: larger;
}

.text-center {
  text-align: center;
}

/****************** Shero Section ***************/
.shero-section {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 168, 0.3));
}

/****************** CSS for Typing Effect using CSS only ***************/
.typewriter h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

/****************** CSS for Typing Effect using CSS and Custom JS ***************/

#container {
  text-align: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#text {
  display: inline-block;
  vertical-align: middle;
  color: orange;
  letter-spacing: 2px;
  font-size: 100px;
}

@media screen and (max-width: 497px) {
  #text {
    font-size: 3em;
  }
}

#cursor-ltr {
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 100px;
  background-color: orange;
  animation: blink 0.75s step-end infinite;
}

#cursor-rtl {
  display: inline-block;
  display: none;
  vertical-align: middle;
  width: 3px;
  height: 100px;
  background-color: orange;
  animation: blink 0.75s step-start infinite;
}

@keyframes blink {
  from,
  to {
    background-color: transparent;
  }
  50% {
    background-color: orange;
  }
}

#asl {
  display: none;
  text-align: center;
}

/****************** About Section ***************/
.about-section {
  background-color: rgba(0, 0, 168, 0.3);
  color: rgb(255, 100, 0);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.col.col-md-3 {
  padding: 0px;
}

@media screen and (min-width: 488px) {
  .text-container {
    background-color: rgba(0, 0, 0, 0.3);
    width: 410px;
    position: absolute;
    left: 14.5%;
  }

  .text-container div.col.col-md-3 {
    max-width: 100%;
  }

  .text-break {
    display: block;
  }
}

@media screen and (max-width: 487px) {
  h1 {
    font-size: 2.3em;
  }
}

/****************** Reach Section ***************/
.reach-section {
  background-color: rgba(135, 206, 235, 0.3);
  padding: 128px 0px;
}

.reach-section .row {
  justify-content: center;
}

#accordion {
  background-color: rgba(0, 0, 0, 0.25);
}

.card {
  background-color: rgba(0, 0, 0, 0);
}

.thought-bubble-container {
  display: flex;
  justify-content: center;
}

.thought-bubble {
  border: 1px solid gray;
  border-radius: 10px;
  padding: 10px 10px 0px;
  margin-bottom: 12px;
}

.accordion-wrapper {
  padding-bottom: 25px;
}

.ta-da {
  display: none;
  text-align: center;
}

.ta-da p {
  padding: 25px 0px;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 487px) {
  .accordion-wrapper {
    width: 75%;
    margin: auto;
  }
  .ta-da {
    width: 50%;
    margin: auto;
  }
}
/****************** Starlight Section ***************/
.starlight-section {
  background-color: rgba(225, 20, 100, 0.18);
  padding: 128px 0px;
}

h1 {
  margin-bottom: 20px;
}

.sun-is-star-wrapper {
  background: linear-gradient(
    to right,
    rgba(0, 0, 50, 0.25),
    rgba(225, 20, 100, 0)
  );
  padding: 20px;
  border-radius: 10px;
}

.sun-is-star-margin {
  margin-top: 10px;
}

.big-star {
  font-size: 100px;
  line-height: 70px;
}
.big-sun {
  font-size: 100px;
  line-height: 88px;
}

@media screen and (max-width: 487px) {
  h1 {
    text-align: center;
  }
}

/****************** Counting Stars Section ***************/
.counting-section {
  background-color: rgba(88, 0, 225, 0.28);
  padding: 128px 0px;
}

ul {
  list-style: none;
}

.outset:before {
  content: "\2605";
}

.modal-content {
  /* background-color: rgba(255, 255, 255, 0.4); */
  background-color: rgba(255, 0, 255, 0.4);
}

.close-modal,
.alchemize1b,
.alchemize2b,
.alchemize3b,
.alchemize4b,
.alchemize5b,
.alchemize6b,
.alchemize7b,
.alchemize8b,
.alchemize9b,
.alchemize10b,
.alchemize1c,
.alchemize2c,
.alchemize3c,
.alchemize4c,
.alchemize5c,
.alchemize6c,
.alchemize7c,
.alchemize8c,
.alchemize9c,
.alchemize10c {
  display: none;
}

@media screen and (max-width: 497px) {
  .counting-section {
    padding: 68px 0px;
  }
  .counting-subtitle-desktop {
    display: none;
  }
  .counting-subtitle-mobile {
    display: contents;
  }
  .counting-subtitle-mobile p {
    padding: 0px 15px;
  }
}

@media screen and (min-width: 498px) {
  .counting-header {
    text-align: center;
  }
  .counting-subtitle-desktop {
    display: contents;
    display: flex;
    justify-content: center;
  }
  .counting-subtitle-mobile {
    display: none;
  }
  .outset-wrapper {
    width: 50%;
    margin: auto;
  }

  .outset1 {
    position: relative;
    top: 106px;
  }
  .outset2 {
    position: relative;
    top: 8px;
    left: 103px;
  }
  .outset3 {
    position: relative;
    top: 15px;
    left: 173px;
  }
  .outset4 {
    position: relative;
    top: 62px;
    left: 281px;
    z-index: 2;
  }
  .outset5 {
    position: relative;
    top: -18px;
    left: 302px;
  }
  .outset6 {
    position: relative;
    top: 42px;
    left: 205px;
  }
  .outset7 {
    position: relative;
    top: 43px;
    left: 25px;
  }
  .outset8 {
    position: relative;
    top: 42px;
    left: 251px;
    z-index: 1;
  }
  .outset9 {
    position: relative;
    top: -142px;
    left: -35px;
  }
  .outset10 {
    position: relative;
    top: -16px;
    left: 72px;
  }
}

@media screen and (min-width: 498px) and (max-width: 798px) {
  .outset-wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 798px) {
  .counting-header {
    margin-left: -300px;
  }
}

.did-you-know {
  display: none;
  margin-top: 47px;
  border: 2px solid orange;
  border-radius: 10px;
  padding: 20px;
  background-color: rgba(0, 0, 168, 0.3);
}

@media screen and (min-width: 498px) and (max-width: 770px) {
  .did-you-know {
    width: 90%;
  }
}

@media screen and (min-width: 771px) {
  .did-you-know {
    width: 60%;
  }
}

/****************** Clusterstruck Section ***************/
.clusterstruck-section {
  background-color: rgba(0, 225, 214, 0.28);
  padding: 68px 0px;
  min-height: 101vh;
}

@media screen and (min-width: 1188px) {
  .clusterstruck-mama-wrapper {
    width: 50%;
  }
}

@media screen and (min-width: 498px) {
  .clusterstruck-wrapper {
    padding-top: 42px;
    padding-left: 42px;
    float: left;
  }
}

@media screen and (min-width: 498px) and (max-width: 1187px) {
  .clusterstruck-mama-wrapper {
    width: 80%;
  }
}

.clusterstruck-header {
  padding-bottom: 20px;
}

.clusterstruck-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 42px;
  margin-top: 8px;
  border-radius: 10px;
}

.col-big-star {
  margin-left: -60px;
  margin-bottom: 20px;
}

.row-star {
  margin-bottom: 20px;
}

@media screen and (max-width: 497px) {
  .col-big-star {
    margin-left: -120px;
    margin-bottom: 45px;
  }
  #cursor-ltr-footer {
    font-size: 3em;
    margin: 0px -10px 0px;
    padding-left: 3px;
    padding-right: 3px;
  }
}

.col-big-star a {
  color: greenyellow;
}

#cursor-ltr-footer {
  z-index: 1;
  font-size: 3em;
}

@media screen and (min-width: 498px) {
  .symbol-wrapper h5 {
    width: 200px;
  }

  .col-big-star p {
    padding-left: 120px;
    width: 500px;
  }
}

#asl-footer img {
  display: none;
}

#asl-footer {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

/****************** Footer Section ***************/
footer {
  background: linear-gradient(rgba(0, 225, 214, 0.28), rgba(0, 225, 214, 0.5));
  z-index: 2;
  padding: 16px 0px;
}

@media screen and (min-width: 498px) {
  .copyright-desktop {
    margin: 0px;
    z-index: 2;
  }

  .copyright-mobile {
    display: none;
  }
}

@media screen and (max-width: 497px) {
  .copyright-mobile {
    margin: 0px;
    z-index: 2;
    text-align: center;
  }
  .copyright-desktop {
    display: none;
  }
}
