body {
  background-color: #000;
  color: #333;
  font-family: '0xProto Nerd Font', 'Fira Code', monospace;
  padding: 2rem;
  position: relative;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
}

h1 {
  text-align: center;
}

.weather, .forecast {
  background-color: #000;
  color: #fff;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.separator {
  margin: 2rem 0;
  border-top: 2px dashed #ccc;
}

.forecast-item {
  margin-bottom: 1rem;
}

.wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 720px;
}

.wrapper::after {
  content: "";
  position: absolute;
  top: 5vw;
  left: -20%;
  right: -20%;
  height: 100%;
  width: 140%;
  margin: 0 auto;
  transform: scale(1);
  filter: blur(8vw);
  background: #84046D; /*uses the same color i use in my i3 config :3*/
  z-index: -1;
  border-radius: 2rem;
  pointer-events: none;
}

.card {
  background-color: #430c49;
  border-radius: 1rem;
  width: 100%;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.headtext {
  font-size: 2rem;
  padding: 0.625rem 1.25rem;
  font-weight: bold;
  color: #fff;
}

.ahhh-the-umm-that-thingie-ig {
  font-size: 0.5rem;
  color: #fff;
}