html {
    scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: center;
  # background-color: #f4f4f4;
  padding: 10px;
  margin: 10px;
  # position: sticky;
  top: 0;
  z-index: 1000;
  #box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  # font-weight: bold;
  padding: 8px 12px;
  border: 2px solid #000;
  border-radius: 1px;
  background-color: #CFB991;
  transition: background-color 0.3s, color 0.3s;
}
.navbar a:hover {
  background-color: #0056b3;
  color: #ffffff;
}

/* Section Styling */
.white-cards {
    background-color: #fff;
    border: 1px solid #ccc; /* Border color and width */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow with a slight transparency */
    padding: 20px;
    border-radius: 8px; 
    margin-bottom: 20px;
}


.white-cards h3 {
text-align: center;
margin-top: 0px; 
margin-bottom: 30px; 
}

.purdue-blocks__button {
  align-items: center;
  background: #000 !important;
  border: 2px solid #000;
  color: #cfb991 !important;
  display: inline-flex;
  font-family: acumin-pro,Franklin Gothic,sans-serif;
  font-size: 1rem;
  font-weight: 400 !important;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0.5rem;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  transition: all .2s ease;
  width: 25%;
  z-index: 1;
  display: block;
}

.purdue-blocks__button.purdue-blocks__button--gold-light {
  background: #cfb991 !important;
  border: 2px solid #000;
  color: #000 !important;
}

.purdue-blocks__button.purdue-blocks__button--gold-light:hover {
  background: #000 !important;
  color: #cfb991 !important;
  cursor: pointer;
}