@media (max-width: 800px) {
    html, body {
      max-width: 100%;
      min-width: 100%;
      display: flex;
      overflow-y: scroll;
      height: fit-content;
      margin: 0;
      overflow-x: hidden;
      padding: 10px;
      justify-content: center;
    }

    .content {
      all: unset;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .homepage {
      all: unset;
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      height: 100vh;
      scroll-snap-align: start;
    }

    .brief {
      width: 100%;
    }

    .myName {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .myName h1{
      font-size: 62PX;
    }

    .aboutMe {
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      height: fit-content;
      margin-bottom: 50px;
    }

    .aboutMeDetails {
      max-width: 100%;
      height: auto;
      padding: 5px;
    }

    .life {
      height: fit-content;
    }

    .lifeColumn {
      height: 105px;
    }

    .watching {
      all: unset;
      display: flex;
      flex-direction: row;
      flex: 1;
      padding: 10px;
      background-color: #242429;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .watchingDetails {
      padding: 5px;
    }

    .projectSlider, .serviceSlider {
      overflow-x: scroll;
      width: auto;
      height: auto;
    }

    .project, .service {
      min-width: 100%;
      height: auto;
    }

    .contactDetails {
      flex-direction: column;
      height: auto;
    }

    .contMeDetails {
      width: 100%;
    }
 
    .nav {
      border: 1px solid rgba(255, 255, 255, .2);
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    max-width: 90%; 
    transition: all 0.3s ease;
    height: 40px;
    z-index: 1000;
    justify-content: center;
    }
}
