/*
Theme Name: Custom Blog Theme
Author: Your Name
Version: 1.0
*/
/* Responsive images */
.responsive-img {
  width: 100vw;
  height: auto;
  background-position: center center;
}

@media (max-width: 768px) {
  .responsive-img {
    width: 120vw;
    background-position: center center;
    height: inherit;
  }
}

/* Global box sizing */
* {
  box-sizing: border-box;
}

/* Base typography */
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

/* Slideshow helpers */
.mySlides {
  display: none;
}

img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1024px;
  position: relative;
  margin: auto;
}

/* Slideshow navigation */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 10%;
  margin-left: 40px;
  margin-right: 10px;
  padding: 0;
  margin-top: -22px;
  color: #eee;
  font-weight: 900;
  font-size: 4rem;
  transition: 0.9s ease;
  border-radius: 20px;
  user-select: none;
}

/* Position the "next" button */
.next {
  right: 0;
}

/* Hover state */
.prev:hover,
.next:hover {
  color: #73bd00;
}

/* Very small screens */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}

/* Background image positioning */
@media screen and (max-width: 1024px) {
  .bg {
    left: 50%;
    margin-left: -512px;
  }
}

/* Positioning utilities */
.relative {
  position: relative;
  max-width: 100%;
  height: auto;
}

.absolute {
  position: absolute;
  top: 800px;
  right: 0;
  left: 0;
  height: auto;
}

