/* css/custom.css */

body {
  background-color: rgb(85, 85, 85); /* Darker steel-gray */
}

/* Container for the main image to position the button relative to it */
.image-container {
  position: relative;
  /* Remove bottom padding/margin if any exists to reduce gap */
  padding-bottom: 0;
  margin-bottom: 0;
}

/* The floating button itself */
.floating-weather-btn {
  position: absolute;
  top: 10px;  /* 10px from the top */
  right: 10px; /* 10px from the right */
}

.video-background {
  background-image: url('../images/750x300_clouds.jpg');
  background-position: center;
  background-size: cover;
  padding: 1rem; /* Reduced padding for a tighter look */
}

/* Remove the default bottom margin from cards for tighter spacing */
.card {
  margin-bottom: 0.5rem; /* A small margin between cards */
  border: none; /* Removes the card border for a cleaner look */
}



