.anchor-button {
  display: inline-block;
  padding: 5px 5px;
  background-color: rgb(255, 0, 0);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: large;
  transition: background-color 0.3s ease;
  box-shadow: black 0px 2px 15px 0px;
  
}
.anchor-button:hover {
  background-color: darkblue;
  color: white;
}
  
  @media screen and (max-width: 800px) {
    .anchor-button{
      font-size: large;
    }
    h1{
      font-size: large;
    }
  }
  
  @media screen and (max-width: 700px) {
    .anchor-button{
      font-size:larger;
    }
    h1{
      font-size: larger;
    }
    
    
  }
  @media screen and (max-width: 500px) {
    .anchor-button{
      font-size: medium;
    }
    h1{
      font-size: large;
    }
    
  }
  @media screen and (max-width: 400px) {
    .anchor-button{
      font-size: small;
    }
    h1{
      font-size: medium;
    }
    
  }

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #400ef5;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  display: none;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.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;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* marquee animation start */
.marq{
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;

}
.blink {
  animation: blinker 1.5s linear infinite;
  color: red;
  font-family: sans-serif;
  overflow-x: hidden;
  display: block;
  width: 1000px;
  
}

@keyframes blinker {
  50% {
      opacity: 0;
  }
}
/* marquee animation End */
/*12th class div start */
h2{
  text-align: center;
  font-size: large;
  height:auto;
  background-color: blue;
  color: white;
  padding: 2px 0px 2px 2px;
  margin-top: 1px;
  margin-bottom: 1px;
  box-shadow: 1px 1px 10px 1px;

}
.container{
  width: 100%;

}
.row{
  border-style: solid;
  border-width: 1px;
}
.row:after {
  content:"";
  display: table;
  clear: both;
}

.row button{
  background-color: red;
  border-style: none;
  border-radius: 5px;
  float: right;
  color: white;
  padding: 3px;
  margin: 3px;
  
}
.row button:hover{
  background-color: blue;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
.column {
  float: left;
  width: 33.33%;
  box-shadow: 0.1px 0.1px 5px 0.1px;
}
.row .column p{
  background-color:inherit;
  padding: 5px ;
  margin: -1px;
  
}
.row .column h4 ,a {
  color: red;
  text-decoration: underline;
  text-align: center;
  margin:1px;
}
.row .column h4,a:hover{
  color: blue;
}
@media screen and (max-width: 500px) {
  .row .column p , h4 {
    font-size: x-small;
    margin: 1px;
    text-align: center;
    
  }
  .row button{
    font-size: 10px;
    
  }
}


