
#slogan{
    z-index: 1;
    color: var(--text-primary);
    font-size: 3rem;
    font-family: 'Pacifico', cursive;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}
#starBox{
  z-index: 1;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}
.starLarge{
  font-size: 2rem !important;
}
.starLarger{
  font-size: 2.5rem !important;
}
#starLargest{
  font-size: 3rem !important;
}
#slogBox{
    z-index: 1;
    height: 30rem;   
    background-color:var(--bg-header);
    text-align: center;
    position: relative;
    user-select: none;
}
.parallax{
    background-image: url(../img/home/parallax.svg);
    height: 33%; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 200,
  'opsz' 48
}
.info{
  display: flex;
  flex-direction: row;
}
.boxImg {
  border-radius: 3rem;
  width: 50%;
  height: 32rem;
}
.imgText{
  color: var(--text-primary);
  padding: 4rem;
  width: 100%;
  background-color: #282828d8;
  border-radius: 3rem;
  font-size: 2rem;
}
/*Code based on code from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_quotes_slideshow */
body {font-family: Verdana, sans-serif; margin:0}
.slideshow-container {
  position: relative;
}
.slideshow-container * {
  box-sizing: border-box;
}
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: var(--text-primary);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 1rem 1rem 0;
  user-select: none;
  transition: .5s ease-in-out;
}
.next {
  position: absolute;
  right: 0;
  border-radius: 1rem 0 0 1rem;
}
.prev:hover, .next:hover {
    color: var(--text-primary);
    background-color: var(--bg-header);
    transition: background-color .5s ease-in-out;
}
.dot-container {
    text-align: center;
    padding: 20px;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}

@media (max-width: 950px){
  #slogan{
    font-size: 2rem;
    width: 90%;
  }
  .starLarge{
    font-size: 1.5rem !important;
  }
  .starLarger{
    font-size: 2rem !important;
  }
  #starLargest{
    font-size: 2.5rem !important;
  }
  .boxImg{
    width: 100%;
    height: 100%;
  }
  .imgText{
    padding: 1.5rem;
    font-size: 1rem;
  }
  .info{
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 350px){
  .starLarge{
    font-size: 1rem !important;
  }
  .starLarger{
    font-size: 1.5rem !important;
  }
  #starLargest{
    font-size: 2rem !important;
  }
  .boxImg{
    height: 5rem;
    border-radius: 1rem;
  }
  .imgText{
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1rem;
  }
  .main{
    padding-top: 0;
  }
}