*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
   
}
.header{
    height:20vh;
    width:100vw;
    background-color: #513883;
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    font-size:70px;
    overflow-x: hidden;
}
.heading{
    color:#513883;
    font-size: 50px;
    height: 15vh;
    width:100vw;
    padding-top: 20px;
    overflow-x: hidden;
}
.parent{
  display: flex;
}
ul li:hover{
  color: orange;
}
li{
  font-size: 54px;
  margin-left: 400px;
  cursor: pointer;
  list-style: none;
  font-family:cursive;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  margin-right: 10px;
}
img {
  max-width: 100%;
  height: auto;
}


.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@media (max-width:500px){
    .header{
        height:auto;
        max-width: 100%;
        background-color: #513883;
        display: flex;
        justify-content: center;
        align-items: center;
        color: whitesmoke;
        font-size:30px;
        overflow-x: hidden;
    }
    .heading{
        color:#513883;
        font-size: 28px;
        height: 15vh;
        width:100%;
        padding-top: 40px;
        overflow-x: hidden;

      }
      ul li:hover{
          color: orange;
          overflow-x: hidden;
      }
      .parent{
        display: flex;
        flex-direction: column;
      }
      li{
        font-size: 24px;
        margin-left: 0px;
        cursor: pointer;
        list-style: none;
        font-family:cursive;
      }
      

}
@media (min-width:1000px){
  .header{
      height:130px;
      max-width: 100%;
      background-color: #513883;
      display: flex;
      justify-content: center;
      align-items: center;
      color: whitesmoke;
      font-size:45px;
      overflow-x: hidden;
  }
  .heading{
      color:#513883;
      font-size: 40px;
      height: 15vh;
      width:100%;
      padding-top: 40px;
      overflow-x: hidden;

    }
    ul li:hover{
        color: orange;
        overflow-x: hidden;
    }
    .parent{
      display: flex;
      flex-direction: row;
    }
    li{
      font-size: 32px;
      margin-left: 150px;
      cursor: pointer;
      list-style: none;
      font-family:cursive;
    }
    

}
