* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "montserrat";
    color: #fff;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
  }
  *::selection {
    background-color: #fff;
    color: #15ece2;
  }
  
  body::-webkit-scrollbar {
    display: block;
    width: 8px;
    background: #15ece2;
  }
  body::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 50px;
  }
  body {
    overflow-x: hidden;
  }
  #cursor {
    height: 20px;
    width: 20px;
    background-color: #15ece2;
    border-radius: 50%;
    position: fixed;
    z-index: 99;
    transition: all linear 0.1s;
  }
  #cursor-blur {
    height: 500px;
    width: 500px;
    background-color: rgba(101, 250, 238, 0.3);
    border-radius: 50%;
    position: fixed;
    filter: blur(80px);
    z-index: 9;
    transition: all linear 0.4s;
  }
  #nav {
    height: 130px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 120px;
    gap: 50px;
    position: fixed;
    justify-content: flex-start;
    z-index: 999;
  }
html,body{
    width: 100%;
    height: 100%;    
}
#nav img {
    height: 4.5vw;
  }
  #nav h4 {
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.15vw;
  }
  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -10;
    position: fixed;
  }
  
  /*#main {
    position: relative;
    background-color: rgba(0, 0, 0, 0.39);
  }*/
  
  #page1 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 10;
  }
  #page1 h1 {
    font-size: 7.5vw;
    font-weight: 900;
    position: relative;
  }
  #page1 h1::before {
    content: "Pragga Mukherjee";
    position: absolute;
    color: #000;
    top: -5px;
    left: -5px;
    -webkit-text-stroke: 1.5px #15ece2;
    z-index: -1;
  }
  #page1 h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #page1 p {
    font-size: 1.2vw;
    font-weight: 500;
    width: 40%;
  }
  
  #page1 #arrow i {
    font-size: 50px;
    font-weight: 100;
  }
  #page1 #arrow:hover {
    scale: 0.4;
    background-color: #15ece2;
  }
  #page2 {
    min-height: 100vh;
    width: 100%;
    z-index: 10;
  }
  
  #scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;
  }
  #scroller::-webkit-scrollbar {
    display: none;
  }
  #scroller-in {
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  #scroller h4 {
    display: inline-block;
    font-size: 120px;
    font-weight: 900;
    font-family: gilroy;
    margin-right: 20px;
    transition: all linear 0.3s;
    color: #000;
    -webkit-text-stroke: 2px #fff;
  }
  #scroller h4:hover {
    color: #1ebcc1;
    -webkit-text-stroke: 2px #15ece2;
  }
  @keyframes scroll{
    from{
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #about-me {
    height: 40vh;
    width: 100%;
    display: flex;
    padding: 0 50px;
    align-items: center;
    position: relative;
    z-index: 10;
    justify-content: space-around;
  }
  #about-me img {
    height: 220px;
    width: 220px;
    border-radius: 20px;
    object-fit: cover;
  }
  #about-me-in {
    width: 50%;
    text-align: center;
  }
  #about-me-in h3 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 30px;
  }
  #about-me-in p {
    font-size: 20px;
    line-height: 26px;
  }
  
  #cards-container {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
    z-index: 10;
  }
  .card {
    height: 80%;
    width: 24%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all ease 0.6s;
  }
  #card1 {
    background-image: url(image2.jpg);
  }
  #card2 {
    background-image: url(image3.jpg);
  }
  #card3 {
    background-image: url(image5.jpg);
  }
  .overlay {
    height: 100%;
    width: 100%;
    background-color: #15ece2;
    padding: 30px;
    padding-top: 160px;
    opacity: 0;
    transition: all ease 0.6s;
  }
  .overlay h4 {
    color: #000;
    font-size: 40px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 20px;
    font-weight: 800;
  }
  .overlay p {
    color: #000;
    font-size: 18px;
  }
  .card:hover .overlay {
    opacity: 1;
  }
  .card:hover {
    transform: rotate3d(-1, 1, 0, 20deg);
  }
  #page3 {
    height: 100vh;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
  }
  #page3 > p {
    font-size: 35px;
    font-weight: 700;
    width: 60%;
    line-height: 45px;
    text-align: center;
  }
  
  #page3 img {
    position: absolute;
    height: 60px;
  }
  #page3 #colon1 {
    left: 15%;
    top: 25%;
  }
  #page3 #colon2 {
    bottom: 30%;
    right: 15%;
  }
  #page4 {
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
  }
  .elem {
    height: 70%;
    width: 26%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }
  
  .elem h2 {
    height: 100%;
    width: 100%;
    background-color: #15ece2;
    display: flex;
    color: #000;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
    font-size: 2vw;
    position: absolute;
    z-index: 10;
  }
  .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
    scale: 1.1;
  }
  .elem:hover h2 {
    color: #fff;
    background-color: transparent;
  }
  .elem:hover img {
    scale: 1;
  }
  #page4 h1 {
    font-size: 6.4vw;
    position: absolute;
    top: -50%;
    font-weight: 800;
    font-family: gilroy;
    color: #000;
    -webkit-text-stroke: 2px #fff;
  }
  #footer {
    height: 40vh;
    width: 100%;
    background: linear-gradient(to left bottom, #7ae7e2 0%, #21bfd4 80%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6.5vw;
    padding: 0 100px;
  }
  #footer > img {
    position: absolute;
    height: 100%;
    z-index: 0;
  }
  #f1 img {
    height: 100px;
  }
  #f1,
  #f2,
  #f3,
  #f4 {
    width: fit-content;
    position: relative;
    z-index: 99;
  }
  #f2 h3 {
    font-size: 1.6vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #000;
    font-weight: 900;
    margin-bottom: 8px;
  }
  #f3 h3 {
    font-size: 1.6vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #000;
    font-weight: 800;
    margin-bottom: 8px;
  }
  #f4 h4 {
    font-size: 1vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
  }


/*light dark theme related that i copied*/
  :root {
    --lightTheme: #363426;
    --darkTheme: #111111;
    --borderRadius: 10px;
    --animation: all 0.5s ease;
  }
  
  html {
    font-size: 2vmin;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: var(--lightTheme);
  }
  
  body {
    transition: var(--animation);
    overflow-x: hidden;
  }
  
  body.light-theme {
    background: var(--lightTheme);
  }
  
  body.dark-theme {
    background: var(--darkTheme);
  }
  
  /**,
  *::before,
  *::after {
    font-size: inherit;
    font-family: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  }*/
  
  .container {
    width: 100vw;
    min-height: 100vh;
  }
  
  .navigation-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 75px;
    transition: var(--animation);
  }
  
  body.light-theme .navigation-bar {
    background: var(--darkTheme);
  }
  
  body.dark-theme .navigation-bar {
    background: var(--lightTheme);
  }
  
  .navigation {
    display: flex;
  }
  
  .navigation .navigation-item {
    list-style: none;
  }
  
  .navigation .navigation-item .navigation-link {
    display: block;
    position: relative;
    font-size: 18px;
    text-decoration: none;
    padding: 15px 10px;
    transition: var(--animation);
  }
  
  body.light-theme .navigation-link {
    color: var(--lightTheme);
  }
  
  body.dark-theme .navigation-link {
    color: var(--darkTheme);
  }
  
  .navigation .navigation-item .navigation-link::after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 4px;
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    transform: scaleX(0);
  }
  
  body.light-theme .navigation-link::after {
    background-color: var(--lightTheme);
  }
  
  body.dark-theme .navigation-link::after {
    background-color: var(--darkTheme);
  }
  
  .navigation .navigation-item .navigation-link:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  
  .blog {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  
  .title {
    font-size: 36px;
    text-align: center;
    margin: 10px 0;
    padding: 0;
    transition: var(--animation);
  }
  
  body.light-theme .title {
    color: var(--darkTheme);
  }
  
  body.dark-theme .title {
    color: var(--lightTheme);
  }
  
  .post {
    width: 500px;
    max-width: 600px;
    min-height: 150px;
    margin: 10px 0;
    border-radius: var(--borderRadius);
    padding: 20px;
    transition: var(--animation);
  }
  
  body.light-theme .post {
    color: var(--lightTheme);
    background-color: var(--darkTheme);
  }
  
  body.dark-theme .post {
    color: var(--darkTheme);
    background-color: var(--lightTheme);
  }
  
  .post .post-title {
    font-weight: 700;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: var(--borderRadius);
    text-align: center;
    transition: var(--animation);
  }
  
  body.light-theme .post-title {
    color: var(--darkTheme);
    background-color: var(--lightTheme);
  }
  
  body.dark-theme .post-title {
    color: var(--lightTheme);
    background-color: var(--darkTheme);
  }
  
  .post .post-text {
    margin: 10px 0;
    font-size: 1.1rem;
  }
  .post .post-author {
    font-weight: 300;
    font-style: italic;
    font-size: 15px;
  }
  
  @media (max-width: 768px) {
    .navigation-bar {
      flex-direction: column;
      height: 100%;
    }
  
    .navigation {
      flex-direction: column;
      margin: 10px 0;
    }
  
    .navigation-item {
      text-align: center;
    }
  
    .toggle {
      margin-bottom: 20px;
    }
  
    .post {
      width: 90vw;
    }
  }