
/*sizing*/
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
   margin: 10px;
}
body {
    cursor: url('cursor.png'), default;
    font-family: "Short Stack";
}

/* General Styling*/
.header {
  /* Color and spacing */
  font-family: "Short Stack", cursive;
  background-color: white;
  color: white;
  padding: 20px;
  /* Sticky positioning */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navLinks .icon {
  display: none;
  font-size: 20px;
}

.header h1 {
  text-align: center;
}

.hamburger {
  display: none;
  text-align: center;
}

/* Navlink spacing */
.navLinks {
  overflow: hidden;
  font-family: "Short Stack", cursive;
  background-color: white;
  /* Sticky positioning */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Navlink styles:*/

.navLinks a {
  float: right;
  display: block;
  text-align: center;
  padding: 5px 80px;
  text-decoration: none;
  font-size: 16px;
  color: #FAD16C;
  margin: 0;
}

.navLinks a:hover {
  transition: all 0.2s ease-out;
  color: teal;
  transform: scale(130%);
}

.button {
    background-color: #FAD16C;
    color: "black";
}

/* Collapsable*/

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #35858E;
  color: #fad16c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 25px;
  margin: 0px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover, {
  background-color: #7DA78C;
  transition: all 0.2s ease-out;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  border-style: double ;
  border-width: 5px;
  border-color: #35858E;
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: center
}

.content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.collapsible:after {
  content: '✚'; /* Unicode character for "plus" sign (+) */
  font-size: 25px;
  color: white;
  float: right;
  margin-left: 5px;
}

.collapsible.active:after {
  content: "—"; /* Unicode character for "minus" sign (-) */
}

/* End of collapsable */

.main {
  padding: 0em 2em 1em 2em;
  margin: 0 auto;
  background-color: white;
}

.main h1, h2 {
    font-family: "Short Stack", cursive;
}

hr {
  margin: 2em 0;
}

#footer {
  text-align: center;
  padding: 15px;
  background-color: black;
  color: #FAD16C; 
}

/* Page specific */
.textPage {
  max-width: 800px;
}

.gallery {
  padding-top: 1em;
  columns: auto 3;
  text-align: center;
}

.gallery2 {
  padding-top: 1em;
  columns: auto 2;
  text-align: center;
}

.gallery2 {
  padding-top: 1em;
  text-align: center;
}

.gallery2 img{
    width: 100%;
}

.gallery3 {
  padding-top: 1em;
  columns: auto 2;
  text-align: center;
}

.gallery3 img {
  width: 100%;
}
.gallery3 p{
    text-align: right;
}

figure {
  display: inline-block;
  margin: 0;
  margin-bottom: 15px;
}

.spotlightImage {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .navLinks a:not(:first-child) {display: none;}
  .navLinks a.icon {
    float: right;
    display: block;
  }
  .navLinks img{
    margin-left: 0px;
}
  }

@media screen and (max-width: 600px) {
  .navLinks.responsive {position: relative;}
  .navLinks.responsive a.icon {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .navLinks.responsive a {
    float: right;
    display: block;
    text-align: left;
  }
}