@import url("https://fonts.googleapis.com/css?family=Montserrat");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.intro {
  background-image: radial-gradient( circle 3px at top left, rgb(114 54 2 / 70%) 0%, rgb(141 75 18 / 74%) 50%, rgb(202 108 27) 50%, rgb(205 112 32) 30%, transparent 30%, transparent 50% ), linear-gradient(
    90deg, rgba(46, 45, 45, 0.44), rgba(46, 45, 45, 0.44));
  background-size: 4px 4px;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}
.intro-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: width: 100vw; */
  height: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: height: 100vh; */
  object-fit: cover;
  z-index: -1;
  /* filter: brightness(50%); */ /* 0% black, 100% original image, values > 100% are allowed for brighter than original image. */
  /* display: none; */
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}
/* .intro-slideshow img:first-child {
  display: block;
  opacity: 1;
} */
.intro .intro-header { 
  margin-bottom: 0.5rem;
  background-color: #fff;
  border-radius: 6px;
}
.intro .intro-logo { 
  padding: 0;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.intro h1 {
  font-size: 2rem; 
}

.intro h2 {
  font-size: 1.2rem; 
  font-weight: 300;
}
.intro p {
  font-size: 1rem;
  font-weight: bold;
  margin: 2px;
}

@media (max-width: 700px) {
  html {
    font-size: 12px;
  }
  .intro-header {
    padding: 0rem 0rem;
  }
  .intro-logo {
    padding: 1.5rem 2rem;
  }
  .intro h1 {
    font-size: 2.5rem;
  }
  .intro p {
    font-size: 1.25rem;
  }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.sidenav a {
   
  text-decoration: none;
  font-size: 25px;
  color: #000000;
  display: block;
  padding: 10px; 
}

.sidenav a:hover {
  color: #000; 
  background: #f5f5f5;
  border-radius: 6px;
}

.main {
  margin-left: 140px; /* Same width as the sidebar + left position in px */
  font-size: 28px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 0px;}
  .sidenav a {font-size: 18px;}
}