* {
  box-sizing: border-box;
}

@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;
}

body {
  margin: 3%;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

h1 {
  color: white;
  font-size: x-large;
  font-weight: normal;
}

.background {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-image: url(background.jpg);
  z-index: 1;
}

.logo {
  position: absolute;
  float: left;
  z-index: 15;
  opacity: 0.2;
  transition: all 3s;
}

.cur {
  color: rgb(56, 54, 54);
  font-size: x-large;
  z-index: 50;
}

.a,
.c,
.datetime {
  color: white;
  font-size: small;
}

.all {
  position: relative;
  z-index: 15;
  display: grid;
  grid-template-columns: 600px 500px;
  grid-template-rows: 200px;
  gap: 10px;
  justify-content: center;
  margin-left: 30px;
  opacity: 0.1;
  transition: all 3s;
}

.col1CurrentWeather {
  width: 600px;
  height: 550px;
  background-color: rgb(255, 255, 255);
  display: grid;
  grid-template-columns: 250px 250px;
  grid-template-rows: 50px 200px 200px;
  opacity: 0.8;
  gap: 20px;
  margin: auto;
  justify-content: center;
  padding-top: 15px;
}

.detailsCurrentWe1,
.detailsCurrentWe2,
.detailsCurrentWe3,
.detailsCurrentWe4 {
  width: 250px;
  height: 200px;
  background-color: rgb(65, 61, 61);
  z-index: 50;
  border-radius: 20px;
  padding: 10px;
}

.weatherconditionpic {
  text-align: left;
}



.col2FutureWeather {
  width: 500px;
  height: 550px;
  background-color: rgb(0, 0, 0);
  grid-template-rows: 500px 500px 500px;
  row-gap: 20px;
}

.row1,
.row2,
.row3 {
  width: 450px;
  height: 150px;
  margin: 25px;
  background-color: rgb(65, 61, 61);
  z-index: 50;
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 200px 250px;
  grid-template-rows: 100px;
  gap: 5px;
}

.footerContainer {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  grid-template-rows: 50px;
  position: relative;
  z-index: 100;
  align-content: center;
  top: 325px;
  gap: 50px;
  margin-left: 100px;
}




























.opa {
  opacity: 0;
}

.hide {
  display: none;
}