/*Logo*/
h1 {
  font-family: "DynaPuff";
  text-align: center;
  background: white;
  font-size: 36px;
  overflow: hidden;

  border-color: black;
  border-width: 2px;
  border-style: solid;
} 

body {
  font-family: "Patrick Hand SC";
  background: white;
  cursor: url("ZCursor.svg"), auto;
}

a:hover {
  cursor: url("ZPointer.svg"), pointer;
}

/*Navigation Bar*/
ul.navigation {
  list-style-type: none;
  text-align: center;
  overflow: hidden;
  padding: 0;
  margin: 0;

  position: sticky;
  top: 0;

  background-color: white;
}

ul.navigation a {
  display: inline-block;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: -5px;

  font-size: 18px;
  background-color: white;
  color: black;

  transition: background 0.5s;
}

ul.navigation a:hover {
  background: black;
  color: white;
}

ul.navigation a:link {
  text-decoration: none;
}

ul.navigation a:hover img{
  filter: invert(1);
}

#active {
  background: black;
  color: white;
}

#active img {
  filter: invert(1);
}

ul.navigation a img {
  width: 20px;
  margin-bottom: -3px;
  margin-right: 2px;
  margin-left: -5px;
}

/*Header*/
h2 {
  text-align: center;
  background: black;
  position: sticky;
  font-size: 20px;
  color: white;
  padding: 5px;
  top: 33px;
}

/*End Note*/
p.endnote {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  margin-bottom: 35px;
  
  background: black;
  color: white;
}

/*Social Media Links*/
ul.footer {
  list-style-type: none;
  font-size: 10px;
  text-align: center;
  overflow: hidden;
  padding: 5px;
  margin: auto;
  max-width: 200px;

  border: black;
  border-width: 2px;
  border-style: solid;

  position: sticky;
  bottom: 30px;
  margin-left: auto;
  margin-right: auto;

  font-size: 15px;
  background-color: white;
  color: black;
}

ul.footer a {
  display: inline-flex;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100px;

  background-color: white;
  text-decoration: none;
  color: black;
  border: black;
  border-width: 2px;
  border-style: solid;

  transition: background 0.5s;
}

ul.footer a:hover {
  background: black;
  color: white;
  display: inline;
}

/*Shorten Page Width*/
div.page {
  max-width: 60%;
  margin: auto;
}

/*Marquee*/
.marquee {
  width: auto;
  line-height: 0px;
  background-color: black;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 15px;
  margin-top: -10px;
  /*box-sizing: border-box;*/
}
.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0%   { transform: translate(10%, 0); }
  100% { transform: translate(-200%, 0); }
}

/*Postcard*/
.postcard {
  width: auto;
  height: 300px;
  background: white;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
  justify-content: center;

  /* 
  border-color: black;
  border-width: 2px;
  border-style: solid;
  */
}

.postcardImage {
  width: 50%;
  height: auto;
  max-width: 300px;
  align-content: center;
  background: white;
  border: 3px solid;
  border-image: linear-gradient(45deg, black) 1;
}

.postcardImage:hover {
  animation: gradient-border 2s infinite;
}

@keyframes gradient-border {
  0% {
    border-image-source: linear-gradient(45deg, #f31261, #8e44ad, #3498db);
  }
  50% {
    border-image-source: linear-gradient(45deg, #8e44ad, #3498db, #f31261);
  }
  100% {
    border-image-source: linear-gradient(45deg, #f31261, #8e44ad, #3498db);
  }
}

.postcard img {
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.postcardParagraph {
  background: white;
  width: 50%;
  max-width: 400px;
  height: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-left: 10px;
  padding: 10px;
  border: 3px solid;
  border-image: linear-gradient(45deg, black) 1;
}

.postcardParagraph:hover {
  animation: gradient-border 2s infinite;
}

.postcardParagraph::-webkit-scrollbar {
  width: 10px;
}

.postcardParagraph::-webkit-scrollbar-track {
  background: white;
}

.postcardParagraph::-webkit-scrollbar-thumb {
  background: white;
  border-color: black;
  border-width: 3px;
  border-style: solid;
}

/*Scroll Bar*/
body::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: white;
  border-color: black;
  border-radius: 20px;
  border-width: 3px;
  border-style: solid;
}
