
@media only screen and (max-width: 1500px)
{
  .slidesContainer
  {
      min-height: 1400px;
  }
  .SlidesText
  {
    max-width: 800px;
    width: 95%;
    margin: auto;
  }

  .SlidesOverlay img
  {
    margin-top: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  p
  {
    font-size: 30px;
  }

  h1
  {
    font-size: 45px;
  }

  .slidesContainer
  {
    height: calc(100vh - 260px);
  }
}
@media only screen and (min-width: 1501px)
{
    .slidesContainer
    {
        min-height: 600px;
    }
  .SlidesText
  {
    max-width: 400px;
    width: 50%;
    margin-left: 80px;
    float: left;
  }
  .SlidesOverlay img
  {
    display: block;
    margin-right: 80px;
    margin-left: auto;
  }
  p
  {
    font-size: 18px;
  }

  h1
  {
    font-size: 35px;
  }

  .slidesContainer
  {
    height: calc(100vh - 155px);
  }
}

p
  {
    color: white;
    font-weight: bolder;
    text-shadow:
    -2px -2px 0 black,
     0   -2px 0 black,
     2px -2px 0 black,
     2px  0   0 black,
     2px  2px 0 black,
     0    2px 0 black,
    -2px  2px 0 black,
    -2px  0   0 black;
  }

  h1
  {
    color: #351818;
    font-weight: bolder;
    text-shadow:
    -2px -2px 0 white,
     0   -2px 0 white,
     2px -2px 0 white,
     2px  0   0 white,
     2px  2px 0 white,
     0    2px 0 white,
    -2px  2px 0 white,
    -2px  0   0 white;
  }

.slidesContainer
  {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    overflow: visible;
    justify-content: center;
    align-items: center;
    background-color: #000;
  }
  .mySlides
  {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    display: none;
  }
  .SlidesOverlay
  {
    max-width: 1500px;
    position: absolute;
    width: 100%;
    height: auto;
  }

  .SlidesOverlay img
  {
    width: 400px;
    height: 400px;
    border-radius: 40px;
    box-shadow: 0px 0px 0px 5px #351818, 0px 0px 20px 10px black;
  }