@import "ticker.css";
@import "header.css";
@import "menu.css";
@import "content.css";
@import "footer.css";
@import "quiz.css";
@import "tabs.css";
@import "calendar.css";
@import "courses.css";
@import "announcements.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.temporary-notice {
  text-align: center;
  margin: 50px auto; /* space from top/bottom */
  max-width: 600px; /* optional: limit width */
  font-size: 18px;
  line-height: 1.6;
  color: #115740; /* matching your theme color */
}

.temporary-notice a {
  color: #007BFF;
  text-decoration: none;
}

.temporary-notice a:hover {
  text-decoration: underline;
}