@media screen and (max-width: 769px) {
  html, body {
    margin: 0;
    overflow: auto;
    scroll-behavior:smooth;
  }

  .Content {
  }

  .Page {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .myImage {
    width: 100%;
    padding-left: -20px;
    height: auto;
  }

  .aboutMe {

    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .Home {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 100px;
  }

  .name {

    font-weight: bolder;
    font-size: 36px;

    padding: 20px 0px;
  }

  .info {
    font-size: 10px;
    font-weight: lighter;
    line-height: 20px;
    width: 100%;

  }

  .description {
    width: 100%;
    font-size: 10px;
    font-weight: lighter;
    text-align: left;
    padding: 20px 0px;
  }

  .topnav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: #111111;

    position: fixed;
    padding-top: 10px;
    width: 100%;
    margin-left: 0px;

    z-index: 998;
  }


  .topnav-items img {
    height: 10px;
    width: 10px;
    margin-left: 0px;
  }

  .topnav-items {
    display: none; 
  }

  .topnav .topnav-items {
    align-items: center;
  }


  .Work {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;

    text-align: center;
    align-items: center;
    padding-top: 100px;
  }

  .Work-header {
    width: 100%;
    height: auto;
  }


  .Work-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .Work-cell {
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .Work-image {
    border-radius: 10px;
    height: 100%;
    width: auto;
  }

  .Work-cellOverlayTitle { 

    position: absolute;
    width: 100%;
    height:100%;
    color: #fff;
    font-weight: bold;
    font-size: 10px;

  }

}