* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #fff;
}

.heading {
    font-size: 3rem;
    margin-bottom: 2rem;
}

input[type="text"] {
    padding: 0.5rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 10px;
    outline: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.weather-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.temperature {
    font-size: 2rem;
    font-weight: 600;
}
h1 {
    font-family: 'DynaPuff', cursive;
    font-size: 64px;
  }
/* Dark mode styles */
.dark {
    background-color: #1c1c1c;
    color: #e6e6e6;
  }
  
  .dark-mode-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    height: 250px;
    cursor: pointer;
    background-image: url('worm.png'); /* Normal state image */
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.5s ease; /* Transition for flip effect */
  }
  
  .dark-mode-btn.toggled {
    transform: rotateY(180deg); /* Rotate the button when toggled */
    background-image: url('worm.png'); /* Set toggled state image */
  }
  
  .dark-mode-btn:hover {
    opacity: 0.8;
  }