/*Header*/
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: 0px;
  
  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;
}

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

/*Home Images*/
img.home {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin-top: 0px;
  background: black;
  
  border-color: black;
  border-width: 2px;
  border-style: solid;
}

#homeImg {
  background: black;
  overflow: hidden;
}

#homeImg p {
  background: white;
  display: none;
  text-align: center;
  margin-top: 0px;
  padding: 10px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

#homeImg:hover p {
  display: block; 
}

.bottom {
  display: flex;
}

.chatbox {
  background: white;
  width: 70%;
  height: fit-content;
  margin-top: 15px;
  border: 3px solid;
  border-image: linear-gradient(45deg, black) 1;
  animation: gradient-border 2s infinite;
}

.chatbox p {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.log {
  margin-top: 15px;
  margin-left: 10px;
  background: white;
  border: 3px solid black;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  width: 30%;
  font-size: 20px;
}

@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);
  }
}

/*Applies Generally to All H2*/
h2 {
  text-align: center;
}

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

/*Quote*/
h2.quote {
  background: white;
  padding: 10px;
  padding-left: 25%;
  padding-right: 25%;
  margin-bottom: 35px;
  
  border-color: black;
  border-width: 2px;
  border-style: solid;
  
  box-shadow: -10px 10px;
}

/*Boring Endnote*/
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;
  text-align: center;
}

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