body {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    text-align: center;
    background-repeat: no-repeat;
    background-image: url('images/default.jpg');
    background-position: center;
    min-height: 800px;
  }

  h1 {
    margin-bottom: 20px;
  }

.weatherContainer {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    margin-top: 50px;
    border-style: solid;
    border-radius: 16%;
    max-width: 400px;
    box-shadow: 0px 0px 50px 15px red;
    z-index: 1;
    margin-right: auto;
    margin-left: auto; 
}

  .weatherIcon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .weatherData {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #btnSearch{
    margin: 10px;
  }
  #label{
    z-index: 100;
    font-size: 30px;
  }
  #search{
    font-size: 20px;
    margin: 10px;
    border: 5px solid;
    width: 150px;
    height: 30px;
    text-align: center;
    border-radius: 10%;
    box-shadow: -8px 0px 20px 8px purple;
    z-index: 1;
    }
    #btn{
      background-color: orange;
      width: 60x;
      height: 30px;
      font-size: 20px;
    }
  #btn:hover{
    background-color: lightpink;
    border-radius: 30%;
    box-shadow: 0px 0px 20px 8px red;
  }