.fk{
    transition: background-image 1s ease-in-out;
    padding: 20px;
    background-size: cover;
    text-align: center;
    height: 50vh;
    border-radius: 30px;
    
}

.headr{
    color: white;
    font-size: clamp(0.3rem, 3vw, 3rem);
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(0.5rem, 2vw, 2rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.forcast{
    position: absolute;
    text-align: center;
    top: 18%;
    left: 15%;
    transform: translate(-50%, -50%);
    color: white;
    height: 7vh;
    font-size: clamp(0.5rem, 2vw, 2rem);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.icon {
  vertical-align: middle;
}

.weather {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2%;
}

body{
    background-color: white;
    height: 100vh;
    
}

input[type="text"] {
  background-color: white;
  color: blue;
  border: 1px solid #87CEEB;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
}

button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  text-emphasis: bold;
  font-size: 14px;
  font-family: 'Arial', sans-serif;

}

button:hover {
  background-color: darkblue;
}

.pos{
    margin-top: 2%;
    color: blue;
    font-size: clamp(0.5rem, 3vw, 3rem);
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.mm{
    margin-left: 13%;
}

.gk{
    margin-top: -9%;
    margin-left: 20%;
    color: blue;
    font-size: clamp(0.5rem, 3vw, 3rem);
    font-family: 'Arial', sans-serif;
   
}

.con{
    margin-top: -23%;
    margin-left: 70%;
    color: blue;
    font-size: clamp(0.3rem, 2vw, 1.5rem);
    font-family: 'Arial', sans-serif;  
}

.ym{
    margin-top: 8%;
    margin-left: 4%;
    color: blue;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.3rem, 3vw, 2rem);
    
}

.date{
    margin-top: 2%;
    margin-left: 5%;
    color: blue;
    font-size: clamp(0.3rem, 2vw, 1.5rem);
    font-family: 'Arial', sans-serif;
    
}


footer {
  position: relative;
  width: 93%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

footer .social_icon,
footer .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

footer .social_icon li,
footer .menu li {
  list-style: none;
}
footer .social_icon li a {
  font-size: clamp(1rem, 3vw, 2.5rem);
  color: #ccc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
footer .social_icon li a:hover {
  transform: translateY(-15px);
  color: blue;
}

footer .menu li a {
  font-size: clamp(0.5rem, 2vw, 1.2rem);
  color: #ccc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
}
footer .menu li a:hover {
  opacity: 1;
  color: #fff;
}
p {
  color: whtie;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.copyright {
  color: white;
  font-size: clamp(0.5rem, 2vw, 1.2rem);
}

/*wave and animation*/
footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(https://i.ibb.co/rZt4Nhg/wave.png);
  background-size: 1000px 100px;
}

footer .wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave_02 4s linear infinite;
}
footer .wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 0;
  animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@keyframes animateWave_02 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}


.kl{
    margin-top: 65%;
}

@media (min-width: 480px) and (max-width: 1200px) {
  footer {
  position: relative;
  width: 79%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.fk{
    transition: background-image 1s ease-in-out;
    padding: 20px;
    background-size: cover;
    text-align: center;
    height: 35vh;
    border-radius: 30px;
    
}

.forcast{
    position: absolute;
    text-align: center;
    top: 18%;
    left: 18%;
    transform: translate(-50%, -50%);
    color: white;
    height: 7vh;
    font-size: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.text-overlay {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 13px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.kl{
    margin-top: 85%;
}

.date{
    margin-top: 2%;
    margin-left: 5%;
    color: blue;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    
}

}


@media (min-width: 600px) and (max-width: 767px) {
  footer {
  position: relative;
  width: 83%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

}

@media (min-width: 768px) and (max-width: 1024px) {
  footer {
  position: relative;
  width: 88%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

}