* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
.slidecontainer{
  position:relative;
  width:90%;
  height: auto;
  overflow: hidden;
  text-align: center;
  border-radius:20px;      
}
.slide{
  width:100%;
  display: none;
  height: auto;
}
.slide.active{
  display: block;
}
.next,.previous{
  position:absolute;
  top:50%;
  font-size: 30px;
  z-index: 1;
  cursor: pointer;
  padding: 10px 15px;
  background: rgba(0,0,0,0.6);
  border:none;
  color:white;
  
}
.next{
  right:10px;
}
.previous{
  left:10px;
}
h1{
      font-size: 40px;
      text-align: center;
      padding-top: 30px;
      margin-bottom: 30px;
      color:#000033;
      
}
h2{
      font-size:30px;
      padding:30px 0px;
      text-align: center;
      color:#000033;
      
}



img{
      transition: transform 2s ease;
}
img:hover{
      transform:scale(1.33);
}

