@media (max-device-width: 1000px) and (min-device-height: 300px) {
  * {
    box-sizing: border-box;
    margin: 0;
  }

  @keyframes loading {
    0% {
      color: rgb(255, 0, 0);
    }

    20% {
      color: aqua;
    }

    40% {
      color: blue;
    }

    60% {
      color: rgb(155, 13, 60);
    }

    80% {
      color: rgb(95, 185, 4);
    }

    100% {
      color: yellow;
    }
  }

  .loadingAnimation {
    z-index: 100;
    position: absolute;
    top: 35%;
    left: 50%;
    font-size: 50px;
    animation-name: loading;
    animation-iteration-count: infinite;
    animation-duration: 7s;
    display: none;
  }

  body {
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    background-color: rgb(213, 236, 243);
    margin: 0px;
    padding: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }

  h1 {
    color: white;
    font-size: x-large;
    font-weight: normal;
    margin-bottom: 0px;
  }

  .cur {
    color: rgb(10, 10, 10);
    font-size: x-large;
    z-index: 50;
  }

  .background {
    top: 0%;
    left: 0%;
    width: 0%;
    height: 0%;
    background-image: none;
    z-index: 1;
    display: none;
  }

  .logo {
    position: absolute;
    float: left;
    z-index: 15;
    opacity: 0.2;
    transition: all 3s;
  }

  .all {
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: all 3s;
    margin-top: 80px;
    height: fit-content;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    padding: 0px 10px 0px 10px;
  }

  .col1CurrentWeather {
    width: 100%;
    height: fit-content;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.8;
    gap: 10px;
    margin-left: 0px;
  }

  .detailsCurrentWe1,
  .detailsCurrentWe2,
  .detailsCurrentWe3,
  .detailsCurrentWe4 {
    width: 100%;
    height: 200px;
    background-color: rgb(65, 61, 61);
    z-index: 50;
    border-radius: 20px;
    padding: 15px;
    margin-left: 0px;
  }

  .detailsCurrentWe1 {
    background-color: rgb(27, 131, 131);
  }

  .detailsCurrentWe2 {
    background-color: rgb(27, 37, 131);
  }

  .detailsCurrentWe3 {
    background-color: rgb(154, 163, 24);
  }

  .detailsCurrentWe4 {
    background-color: rgb(27, 131, 36);
  }

  .weatherconditionpic {
    text-align: left;
  }



  .col2FutureWeather {
    width: 100%;
    height: fit-content;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    align-items: center;
    justify-content: center;
  }

  .row1,
  .row2,
  .row3 {
    width: 100%;
    height: fit-content;
    background-color: rgb(65, 61, 61);
    z-index: 50;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;

  }

  .footerContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: fit-content;
    z-index: 100;
    color: black;
    margin-top: 0px;
    padding: 0px;
    top: 0;
    margin-left: 60px;
  }

  .a,
  .c,
  .datetime {
    color: black;
    font-size: small;
  }

  .o1,
  .o2 {
    display: none;
  }

  .o3 {
    width: 100%;
  }


}