/* this is style for reset the padding and the margin for all elements */
* {
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Baloo 2';

}

/*styling links*/

/*removes underline*/
a:link, a:visited{
  border-radius: 25px;
  color:white;
  background-color:#7ac59e;
  padding: 10px 10px;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  transition-duration: 0.4s;

}

a:hover, a:active {

  background-color: white;
  color:#7ac59e;

}

/* this is style for every section that contain the image container */
section {
  height: 400vh;
  /*margin affects the space underneath*/
  margin-bottom: 70vh; 
  position: relative;
}

/* this is style for the container that contain the image directly */
.container-img {
  width: 1000px;
  height: 500px;
  padding: 10px;
  margin: auto;
  position: sticky;
  top: 60px;
}

/* this is style for all images */
img {
  width: 100%;
  height: 100%;
}



/*back to top button style*/
#backtotop{
  position:fixed;
  bottom: 30px;
  right: 30px;
  /*brings it forward ontop of the images so its clickable even between panels*/
  z-index: 1;

}

#sixteenth{
  margin-bottom: 0vh;
}




