* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: "Nunito", sans-serif;
    background-image: url(c659cc00703703d849753bd9b530b6fd.png);
    background-repeat: no-repeat;
    background-size: cover;
    
  }
  main {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 120px;
  }
  .container {
    position: absolute;
    top: 50%;
    left: calc(50% - 175px);
    width: 350px;
    height: 60px;
    box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: top 0.5s ease-in;
    padding: 0 10px 0 10px;
  }
  #search {
    width: 300px;
    height: 30px;
    border: none;
    outline: none;
    font-size: 1.3rem;
  }
  .container--weather {
    width: 150px;
    height: 205px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 10px;
    opacity: 0;
    transition: opacity 1s;
  }
  #button {
    border: none;
    background-color: white;
  }
  .fa-magnifying-glass {
    font-size: 1.5rem;
  }
  #degree {
    height: 40px;
    font-size: 1.5rem;
  }
  