body {
    background-color: rgb(255, 255, 255);
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer {
    text-align: center;
}
#slider {
    position: relative;
}
#slider img {
    transition: opacity 1.5s;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    width: 100%;
}
#slider img.fadeIn {
    opacity:1;
}
#homepage-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
#homepage.fadeOut {
    opacity: 0;
}
#homepage {
    background-image: url("2021 04 Park SiteOV 01.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    width: 100%;
    height: calc(100vh - 114px); 
    opacity:1;
    transition: opacity 1s; 
}
header {
    background-color: rgba(226, 226, 226, 0.507);
    vertical-align: text-top;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 0px;
    padding-bottom: 0px;
}
#headshot {
    width: 200px;
}
.wrapper {
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
}
@media (max-width: 1030px) {
    .wrapper {
        margin-left: 30px;
        margin-right: 30px;
    }
    .container {
        margin-left: 30px !important; 
        margin-right: 30px !important; 
    }
}
.example {
    width: 100%;
    margin-top: 20px;
}
.example_header {
    text-align: center;
}
#portfolio {
    max-width: fit-content;
    margin: auto;
    margin-top: 70px;
}
#portfolio a {
    float:left;
}
a {
    text-decoration: none;
    color: inherit;
}
.portfolio-link {
    text-align: center;
    max-width: 224px;
    margin-left: 16px;
    margin-right: 16px;
}
.portfolio-link:hover {
    font-weight: 600;
    transform: scale(1.1)
}
.portfolio-link-image {
    height: auto;
    width: 100%;
}
header a {
    text-decoration: none;
}
#logo {
    float: left;
    margin-top: -20px;
    margin-left: -40px;
}
ul {
    list-style-type: none;
}
.main-nav {
    padding-left: 15px;
    padding-right: 15px;
    color: rgb(110, 110, 110);
    display: inline;
    padding-top: 30px;
    padding-bottom: 30px;
}
.other-nav {
    text-align: right;
    float: right;
}
a:visited {
    color: inherit;
}
.main-nav:hover {
    color: rgb(0, 0, 0);
}
* {
    box-sizing: border-box;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .port-container {
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  .slide {
      width: 100%;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 400px;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 3em;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(105, 105, 105, 0.5);
    text-decoration: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #ffffff;
    font-size: 1.2em;
    padding: 8px 12px;
    position: absolute;
    background-color: rgba(105, 105, 105, 0.5);
    top: 0;
  }
