/* main styles for site */

@font-face {
  font-family: "LocalCantarell";
  src: url("/usr/share/fonts/abattis-cantarell-vf-fonts/Cantarell-VF.otf");
}

@font-face {
  font-family: "Noto Sans Thin", sans-serif;
  src: url("file:///usr/share/fonts/google-noto/NotoSansMono-Thin.ttf");
}
/* line 6, ../sass/styles.scss */
html {
  height: 100%;
  background-color: #111111;
}

/* line 10, ../sass/styles.scss */
body {
  position: relative;
  width: 90%;
  height: 100%;
  margin: 0px auto 10px;
  border-radius: 12.5px;
}

/* line 17, ../sass/styles.scss */
header {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color:darkorange;
}
/* line 22, ../sass/styles.scss */
header.ap {
  position: relative;
  font-family: "Noto Sans Thin";
  font-size: 7em;
  font-weight: 200;
  padding: 2.5% 0 2.5% 0;
}

nav ul a {
  width: 100%;
  margin: 0 auto;
  color: darkorange;
  outline: medium none;
  text-decoration: none;
  z-index: 5;
}

nav img {
  display: block;
  max-width: 200px;
  margin: 25px auto;
}


/* line 74, ../sass/styles.scss */
a {
  font-family: "Noto Sans Thin";
  position: relative;
  text-decoration: none;
  outline: 0;
  color: darkorange;
}

/* line 79, ../sass/styles.scss */
a p {
  position: absolute;
  top: 34%;
  display: inline;
  padding-left: 10px;
}

/* line 85, ../sass/styles.scss */
a img {
  border-radius: 0;
}
/* line 88, ../sass/styles.scss */
a span {
  padding: 30% 5px;
}

.left-side {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content:left;
  height: 30%;
  width: 10%;
  position: relative;
  top: 2.5%; left: 1px;
}

.left-side a {
  font-family: "Noto Sans Thin";
  font-size: 2rem;
  font-weight: bolder;
  color: orange;
  margin: 10px 10px;
  z-index: 5;
}

a:hover {
  color:darkorange;
  background-color: black;
}

/* for index.html slideshow */
.crossfade > figure {
  animation: imageAnimation 60s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  color: transparent;
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 0;
}

/* line 114, ../sass/styles.scss */
.crossfade > figure:nth-child(1) {
  background-image: url("../images/nature/b_williams_river.jpg");
}

/* line 118, ../sass/styles.scss */
.crossfade > figure:nth-child(2) {
  animation-delay: 10s;
  background-image: url("../images/wedding/ty_lea.jpg");
}

/* line 123, ../sass/styles.scss */
.crossfade > figure:nth-child(3) {
  animation-delay: 20s;
  background-image: url("../images/portrait/family.jpg");
}

/* line 128, ../sass/styles.scss */
.crossfade > figure:nth-child(4) {
  animation-delay: 30s;
  background-image: url("../images/pets/dukieext.jpg");
}

/* line 133, ../sass/styles.scss */
.crossfade > figure:nth-child(5) {
  animation-delay: 40s;
  background-image: url("../images/nature/fish_r_n.jpg");
}

/* line 137, ../sass/styles.scss */
.crossfade > figure:nth-child(6) {
  animation-delay: 50s;
  background-image: url("../images/nature/mallard_flt.jpg");
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 0.5;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* line 178, ../sass/styles.scss */
.start_slide {
  max-width: 100%;
  height: 75px;
  margin: 0 auto;
  background-color: #000000;
  border-width: 5px;
  padding-top: 30px;
  font-family: "Noto Sans Thin";
  font-size: 1.5rem;
  text-align: center;
  color: darkorange;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* display nav on thumbs page */
.container-bottom-nav {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  gap: 200px;
  font-size: 2.0rem;
}

/* for image thumbs attributions on hover */
.container a p {
  position: absolute;
  top: 75%;
  left: 1.5px;
  padding-top: 5%;
  height: 75%;
  color: #f1f1f1;
  background-color: #000000;
  display: none;
  z-index: 10;
}


.container a:hover p {
  display: block;
}

/* line 229, ../sass/styles.scss */
.container img {
  text-decoration: none;
  padding: 3px;
  border-width: 1px;
  border-radius: 10px;
  border-color: #aaa;
}

@media all and (max-width: 1050px) {
  /* line 238, ../sass/styles.scss */
  header.ap {
    font-size: 3em;
    padding-left: 7.5%;
  }

}
@media all and (max-width: 30em) {
  /* line 250, ../sass/styles.scss */
  header.ap {
    font-size: 2em;
    padding-left: 0;
  }
}
