/* For mobile S */
@media only screen and (max-width: 320px) {
  body {
    background: #000;
  }

  .body::before {
    /* background-color: red; */
    content: "";
    background: url(https://picsum.photos/id/4/320/800) no-repeat center center/cover fixed;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    opacity: 80%;
  }

  .container {
    max-width: 100vw;
  }

  .container-padding {
    padding: 10px 5px;
  }

  .navbar {
    padding-left: 2px;
    padding-right: 2px;
  }

  header iframe {
    height: 160px;
  }

  .fixed-links {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    bottom: 0;
    height: 50px;
  }
}

/* For mobile M*/
@media only screen and (min-width:321px) and (max-width: 376px) {
  body {
    background: #000;
  }

  .body::before {
    /* background-color: red; */
    content: "";
    background: url(https://picsum.photos/id/4/375/800) no-repeat center center/cover fixed;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    opacity: 80%;
  }

  .container {
    max-width: 100vw;
  }

  .container-padding {
    padding: 10px 5px;
  }

  .fixed-links {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    bottom: 0;
    height: 50px;
  }

  .fixed-link {
    width: 40px;
  }
}

/* for mobile */
@media only screen and (min-width:376px) and (max-width: 426px) {
  body::before {
    /* background-color: red; */
    content: "";
    background: url(https://picsum.photos/id/4/450/800) no-repeat center center/cover fixed;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    opacity: 80%;
  }

  /* .navbar {
        justify-content: center;
    } */

  .parwaaz {
    font-size: var(--size3);
  }

  .nav-link {
    padding: 1px 2px;
  }

  .container {
    max-width: 100vw;
  }

  .container-padding {
    padding: 10px 5px;
  }

  .navbar {
    padding-left: 2px;
    padding-right: 2px;
  }

  header iframe {
    height: 200px;
    margin-bottom: 1rem;
  }

  .fixed-links {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    bottom: 0;
    height: 50px;
  }

  .fixed-link {
    width: 40px;
  }
}

/* For Tablets */
@media only screen and (min-width:426px) and (max-width: 769px) {
  body::before {
    /* background-color: red; */
    content: "";
    background: url(https://picsum.photos/id/4/900/1600) no-repeat center center/cover fixed;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%;
        height: 100%; */
    z-index: -100;
    opacity: 80%;
  }

  /* .navbar {
        justify-content: center;
    } */

  .contaner {
    max-width: 100vw;
    padding-left: 2px;
    padding-right: 2px;
  }

  .parwaaz {
    font-size: var(--size3);
  }

  .nav-link {
    padding: 2.5px 4px;
  }

  header iframe {
    height: 320px;
    margin-bottom: 1rem;
  }
}

/* For laptop */
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  body::before {
    content: "";
    background: url(https://picsum.photos/id/900/1600) no-repeat center center/cover fixed;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    opacity: 80%;
  }

  header iframe {
    height: 400px;
    margin-bottom: 1rem;
  }
}

/* For laptop L */
@media only screen and (min-width:1025px) and (max-width: 1441px) {
  /* body {
        background-color: yellow;
    } */

}

/* For 4k Screen */
@media only screen and (min-width:1441px) and (max-width: 2561px) {
  /* body {
        background-color: orange;
    } */
}