/* Full-screen two-tone background */
body,
html {
  height: 100%;
  margin: 0;
}

body {
  /*background: linear-gradient(to bottom, #9fe870 35%, #fff 35%);*/
  background-image: url('https://exchange.itad.com/assets/images/background.png');
  background-size: cover; /* Ensures the image covers the whole page */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center; /* Centers the image */
  height: 100vh; /* Sets the body height to full viewport height */
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Remove top margin and padding from navbar */
.navbar {
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

.container {
  width: 100%;
  max-width: 1200px;
  position: relative; /* To position the box shadow */
  padding: 0; /* Adjust padding if needed */
}

/* Box shadow */
.box-shadow {
  background-color: #fff;
  padding: 20px;
  margin-top: 100px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}
