/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --main-text-color: #060317;
  --dark-color: #060317;
  --background-size: 900px;
  --header-color: 252, 182, 3;
}

.image-color {
  /* This will change the image's colors by rotating the hue by 90 degrees */
  filter: hue-rotate(200deg);
}

main {
  padding-top: 2em;
  background: #b4afb5 url(../images/home/paperBackground.gif);
  color: var(--dark-color);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: auto;
}

.handclass:hover {
 	cursor: url('../images/cursorSelect.png'), default !important;
 }

header {
  background: linear-gradient(rgba(var(--header-color), 0.2), rgba(var(--header-color), 1));
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
  justify-content: center;
}

html, body {
  height: 50%;
}

html {
  color: var(--main-text-color);
  display: flex;
  justify-content: center;
  font-family: Christana;
}
   
@keyframes xscroll {
    from {
        background-position: 0;
    }
    to {
        background-position: var(--background-size);
    }
}

body {
  cursor: url("../images/cursorIdle.png"), auto;
  color: white;
  background-image: url('../images/backgrounds/block_3.png');
  animation: xscroll 60s linear infinite;
  background-attachment: fixed;
  width: 50%;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Add a black background color to the top navigation */
.topnav {
  background: var(--dark-color) linear-gradient(#b98325, #5f410a);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  border-top: 3px #ffd99f solid;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  cursor: url("../images/cursorSelect.png"), pointer;
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #bca065;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

p {
  font-size: 20px;
  color: grey;
}

a {
  font-size: 30px;
}
