:root {
  --bg-color: #fffcc4;
}

body {
  background-color: var(--bg-color);
  color: black;
  font-family: Verdana;
  text-shadow:
    -1px 1px white,
    -1px -1px white,
    1px -1px white,
    1px 1px white;
}

.welcomediv {
  border: 2px solid black;
  border-radius: 15px;
  max-width: 840px;
  background-color: white;
  padding: 18px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.redimportanttextsmall {
  font-weight: bold;
  color: #bc0000;
}

.entertext {
  font-weight: bold;
  font-size: 24px;
}
.entertext:hover {
  text-shadow: 0 0 1px black;
}

.home-sidebar-group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 5px;
}

.left-home-sidebar {
  flex: 1;
  width: 100%;
}

.center-home-sidebar {
  flex: 1.4;
  width: 100%;
}

.right-home-sidebar {
  flex: 1;
  width: 100%;
}

.sidebar-content {
  border: 2px solid black;
  border-radius: 10px;
  background-color: white;
  margin: 5px 0 0 0;
  padding: 5px;
}

@media (max-width: 600px) {
  .home-sidebar-group {
    flex-direction: column;
    gap: 0;
  }
}









