body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

header {
  padding: 20px 0;
}

header .row,
footer .row {
  display: flex;
  align-items: center;
}

header h1 {
  font-weight: 700;
  margin: 0;
}


header nav {
  display: flex;
  justify-content: flex-end;
}

header p {
  padding: 0 20px;
  margin: 0;
}

.jumbotron {
  display: flex;
  align-items: center;
  /* Corrected relative path */
  background-image: url('../images/alpine.png');
  background-size: cover;
  color: #ffffff;
  height: 500px;
  text-shadow: 0.25px 0.25px 0.25px #000000;
}

.jumbotron h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.jumbotron h3 {
  margin: 0 0 20px;
  color: #fff;
}

section .row img {
  margin: 0 0 30px;
  width: 100%;
}

.col-md-6 {
  margin: 0 0 30px;
}

.btn.btn-primary {
  border-radius: 2px;
  border: 0px;
  color: #fbd1d5;
  text-shadow: none;
  background-color: #ffffff;
}

.btn.btn-primary:hover {
  color: #ffffff;
  background-color: #fbd1d5;
}

.btn-secondary {
  background-color: #E8DFE0;
  color: #ffffff;
  margin: 0 0 30px;
}

.form-group {
	display: flex;
	align-items: center;
	margin: 0;
}

footer {
  font-size: 12px;
  padding: 20px 0;
}

footer .col-sm-8 {
  display: flex;
  justify-content: flex-end;
}

footer ul {
  list-style: none;
}


footer li img {
  width: 32px;
  height: 32px;
}

/* This makes the image scale down to fit its container, but not grow larger than its original size. */
.heatmap-image {
  max-width: 100%;
  width: 70%;
  height: auto; /* Maintains the aspect ratio */
}
.column-list {
  column-count: 3; /* Adjust the number of columns as needed */
  column-gap: 20px; /* Optional: adds space between columns */
}
.btn-primary {
  background-color: #ff6347; /* Tomato red */
  border-color: #ff6347;
  color: #fff; /* White text */
}

.btn-primary:hover {
  background-color: #e5533d; /* Slightly darker red on hover */
  border-color: #e5533d;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 99, 71, 0.5); /* Custom focus outline */
}