body{
    background-image: url("sunvideo.png");
    background-size: cover;
    height: 100vh;
}

#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.6); 
  }

.search-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    margin-top: 0%;

  }

  .btn {
    border-radius: 20px;
  }

  .btn:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
  }
  

  .weather_card {
    width: 900px;
    margin-left: 150px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .weather-icon {
    height: 60px;
    width: 60px;
  }

  #fahreinheit{
    margin-right: -400px;
  }

  .future-weather-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 1rem;
  }

  .card-body{
    text-align: center;
  }
  .card-title {
    font-size: 1.2rem;
    font-weight: bold;
  }

  #heading {
    font-weight: 700;
    color: #003366;
  }

  @media(max-width:768px){
    .weather_card{
      width: 350px;
      margin-left: 8px;
    }
    .weather-icon{
      width: 30px;
    }
    #fahreinheit{
      margin-right: -200px;
    }
  }
  @media(min-width:600px){
    .weather_card{
      width: 750px;
      margin-left: 20px;
    }
  }
  @media (min-width:992px){
    .weather_card{
      width: 1000px;
      margin-left: 120px;
    }
  }
