body, h1, h2, h3, ul, li, a{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h2{
  font-weight: bold;
  color: rgb(68, 77, 87);
}
h3 {
  color: rgb(68, 77, 87);
}

a:link{
text-decoration: solid;
}

a:visited {
  color: rgb(68, 77, 87);
}

a:hover {
  color: rgb(103, 165, 206);
}
/* clickable button */
a.button {
  display: block;
  width: 115px;
  height: 25px;
  background: #4E9CAF;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  line-height: 25px;
}

/* Header and Navigation*/

.main_heading {
	color: Slategray;
  font-family: verdana;
  padding: 17px;
}

header {
    position: relative;
}

.topnav {
    position: absolute;
    right: 0px;
    top: 0px;
}

nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0px;
  }
nav li{
    width: 25%;
    display: inline-block;
    font-size: 18px;
    font-family: Verdana;
    color: slategray;
    text-decoration: none;
    padding: 0px 30px;
}

/* Projects*/
main {
  margin: 0;
}
  .image-grid {
    --gap: 16px;
    --num-cols: 4;
    --row-height: 200px;
  
    box-sizing: border-box;
    padding: var(--gap);
  
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
  }
  
  .image-grid > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-grid-col-2 {
    grid-column: span 2;
  }
  
  .image-grid-row-2 {
    grid-row: span 2;
  }

/* Anything udner 1024px */
  @media screen and (max-width: 1024px) {
    .image-grid {
      --num-cols: 2;
      --row-height: 200px;
    }
  }

* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 100%;
  max-width: 300px;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 15px;
  padding: 15px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}
  

/* Footer */
  footer {
    display: flex;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    background-color: slategray;
    color: snow;
  }
footer .footer-section {
  flex: 1;
  padding: 30px;
  left: 25px;
}
footer .footer-section h3 {
  color: snow;
}
footer .footer-section ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
footer .footer-section ul li {
  margin-bottom: 10px;
  color: snow;
}

footer .footer-section ul li a:visited {
  color: snow;
}

footer .footer-section ul li a:hover {
  color:rgb(103, 165, 206)
}
/* About page */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.about {
  width: 90%;
  display:flex;
  justify-content: space-around;
}

.about-section-text {
  flex-grow: 70%;
  padding: 25px;
  margin: auto;
  line-height: 25px;
}
.about-section-image {
  flex-grow: 30%;
  padding: 50px;
  margin: auto;
}
img[src="img/Gemma_crop.jpg"] {
  border-radius: 50%;
  width: 200px;
}

div #cv a:link {
  font-weight: bold;
  color: #cc3b58;
}

  /* workshops columns */
  .title{
    margin-left: 40px;
  }
  
  .upcoming{
    margin: 40px;
    width: 80%;
  }

  .upcoming h3{
    color: #4E9CAF;
  }

  .workshops_blurb{
    margin: 0 40px;
    width: 80%;
    background-color: rgb(233, 233, 233);
    ;
  }

  .workshops_row{
    display: flex;
  }
  
  .workshops_column{
    flex: 30% 70%;
    line-height: 30px;
  }

  .workshops_column p{
    padding: 20px 50px
  }

  img[src="img/Workshop.png"]{
  max-width: 30%;
  }

  * {box-sizing:border-box}

/* Projects Pages */
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* 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: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* 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;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* text for artworks */
.artworktext {
  margin: 0 10%;
  padding: 18px;

}
