body {
    color: #505050;
    font-family: 'DIN Alternate', sans-serif;
    font-size: 1.5 rem;
    margin: 0;
    padding: 0px 0px 0px 0px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
    background-position: center center;
    background-color: white;
    position: relative;
    text-align: center;
  }

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.50rem;
}

h3 {
    font-size: 1.40rem;
}

* {
    box-sizing: border-box;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .container {
    position: relative;
    min-height: 100%;
  }
  
  #wrapper {
    min-height: 100%; 
  }

  img {
    /* max-width: 100%; */
    /* height: auto; */
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .index-logo {
    background: url('index-architecture.jpg') center top no-repeat;
  }

  .image-box {
    position: relative;
    float: left;
  }

  .image-box .img-hover {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
  }

  .image-box:hover .img-hover {
    display: block;
  }

  .image-box:hover .img-hover {
      display: block;
  }

  div.divide {
    padding: 1px;
    text-align: center;
    background-color: #505050;
    color: #f9f7f3;
  }

  div.navigation {
    padding: 0px;
    text-align: center;
    background-color: white;
    color: #353a3c;
  }

  div.desc {
    padding: 1px;
    text-align: center;
    background-color: white;
    color: #505050;
  }
  
  div.contact {
    padding: 0px;
    text-align: center;
    background-color: white;
    color: #353a3c;
  }

  div.about {
    background-image: url('./toronto-on-grafitti-alley-profile-pic-faded.jpg'); background-repeat: repeat;
    background-size: auto 600px;
    padding: 0px;
    text-align: center;
    background-color: white;
    color: #353a3c;
  }

  div.image-footer {
    padding: 1px;
    text-align: left;
    background-color: white;
    color: #505050;
  }

  .left {
    width: 48px;
    float: left;
    margin-right: 20px;
  }

  .middle {
    width: 48px;
    float: center;
    margin-right: 50%;
  }

  .text-container {
    margin-left: 20px;
  }

  .middle-container {
    margin-left: 50%;
  }

  .my_images {
    display: none;
    object-fit: cover;
  }

  /*
  #about_img { position: relative; height: 200px; width: auto; }
  #about_img img { position: absolute; right: 0; bottom: 0; }
  */

  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  input {
    border: none;
    background: transparent;
  }

  /* Next & previous buttons */
  .prev {
    cursor: pointer;
    position: absolute;
    top: 0%;
    width: auto;
    padding: 1px;
    margin-top: 0px;
    color: transparent;
    font-weight: bold;
    font-size: 48vw;
    border-radius: 0 1px 1px 0;
    user-select: none;
    -webkit-user-select: none;
    left: 0;
  }

  .next {
    cursor: pointer;
    position: absolute;
    top: 0%;
    width: auto;
    padding: 1px;
    margin-top: 0px;
    color: transparent;
    font-weight: bold;
    font-size: 48vw;
    border-radius: 0 1px 1px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: none;
    cursor: pointer;
    position: absolute;
    top: 0%;
    width: auto;
    padding: 1px;
    margin-top: 0px;
    color: transparent;
    font-weight: bold;
    font-size: 48vw;
    border-radius: 0 1px 1px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 8%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .actual {
    opacity: 0.6;
  }
  
  .active,
  .actual:hover {
    border: 1px solid #777;
  }

  a:link {
    text-decoration: none;
    font-size: 1.5rem;
    color: #353a3c;
  }
  
  a:visited {
    text-decoration: none;
    font-size: 1.5rem;
    color: #353a3c;
  }
  
  a:hover {
    text-decoration: none;
    font-size: 1.5rem;
    color: #505050;

  }
  
  a:active {
    text-decoration: none;
    font-size: 1.5rem;
    color: black;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    text-align: center;
    min-width: 130px;
    box-shadow: 0px 2px 4px 0px #505050;
    padding: 6px 8px;
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
