
.carousel-item {
    height: 90vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  .carousel-caption {
    text-align: left !important;
    bottom: 180px;
  }

  .beacontext {
    font-family: Goudy Old Style, Garamond, "Big Caslon", "Times New Roman",
      serif;
    /* font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal,
          "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black",
          "sans serif"; */
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    /* line-height: 17.6px; */
    font-size: 75px;
  }

  .slide-right {
    width: 100%;
    overflow: hidden;
  }

  .slide-right {
    animation: 2s slide-right;
    /* animation-delay: 2s; */
  }

  @keyframes slide-right {
    from {
      margin-left: -300px;
    }

    to {
      margin-left: 0%;
    }
  }

  @media only screen and (max-width: 600px) {

    /*Big smartphones [426px -> 600px]*/
    .beacontext {
      font-family: "Comic Sans MS", cursive, sans-serif;
      font-size: 25px;
    }

    .carousel-caption {
      text-align: left !important;
      bottom: 450px;
    }
  }

  @media only screen and (max-width: 425px) {

    /*Small smartphones [325px -> 425px]*/
    .beacontext {
      font-family: "Comic Sans MS", cursive, sans-serif;
      font-size: 15px;
    }

    .carousel-caption {
      text-align: left !important;
      bottom: 450px;
    }
  }

  .my_text_border {
  color: white;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}