* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #222;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      text-align: center;
      /* padding: 50px; */
      height: 100vh;
    }
    .card {
      width: 100%;
      max-width: 470px;
      background: linear-gradient(135deg, #00feba, #5b548a);
      color: #fff;

      border-radius: 20px;
      padding: 40px 35px;
      text-align: center;
    }
    .search {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      gap: 10px;
    }

    .search input {
      border: 0;
      outline: 0;
      background: #ebfffc;
      color: #555;
      padding: 10px 25px;
      height: 60px;
      border-radius: 30px;
      flex: 1;
      margin-right: 16px;
      font-size: 18px;
    }
    .search button {
      border: 0;
      outline: 0;
      background: #ebfffc;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      cursor: pointer;
    }

    .search button img {
      width: 16px;
    }

    .weather-icon {
      width: 180px;
    }
    .weather .temp {
      font-size: 60px;
    }
    .weather .city {
      font-size: 24px;
      margin-bottom: 60px;
    }

    .details {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      padding: 20px;
    }
    .details .col {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .details img {
      width: 30px;
    }

    .details p {
      margin: 0;
      font-size: 18px;
    }

    .details .humidity,
    .details .wind {
      font-size: 24px;
      color: #ebfffc;
    }
    .details p {
      color: #fff;
      font-size: 16px;
    }

    .disp {
      display: none;
      transition: 1s all;
    }