body {
  font-family: Arial, sans-serif;
  background: url(https://atmos.tamucc.edu/weather/images/weather_tower.jpg) no-repeat center center fixed;
  background-size: cover;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
  text-align: center;
}

h2 {
  color: black;
  margin-top: 20px;
}

p {
  color: black;
}

.dashboard-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  align-items: stretch;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.weather-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 5px;
  margin: 3px;
  display: inline-block;
  width: 125px;
  min-height: 125px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.weather-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.weather-box p {
  font-size: 18px;
  margin: 1px 0;
}

h3 {
  color: #0075a8;
  margin-top: 5px;
}

img {
  max-width: 100%;
  height: auto;
}

.time {
  font-size: 16px;
  color: #000000;
  margin-top: 5px;
  font-weight: bold;
}

.wind-rose-box {
  background-color: #fff;
  border: 1px solid #ddd;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.wind-rose img {
  max-width: 100%;
  height: auto;
}