@import url("./css/utility.css");

.content-body{
  background-color: var(--off-white);
  padding: 20px;
  max-width: 95%;
  min-height: 10px;
  max-height: 95%;
  margin: 0 auto;
}

.welcome-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.welcome-container p {
  font-size: 1.25rem;
}

.welcome-text {
  flex: 1;
}

.clippy-container {
  flex-shrink: 0;
  text-align: center;
}

.welcome-header {
  color: #000080;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
}

.welcome-message {
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 1rem !important;
}

.quick-links {
  background-color: white;
  border: 2px solid #808080;
  margin-top: 20px;
  justify-content: center;
  padding: 10px;
}

.quick-links-title {
  color: #000080;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: bold;
}

.link-button {
  display: block;
  margin: 0.25rem auto;
  width: 95%;
  max-width: 95%;
  max-height: 40px;
  font-size: 1.25rem !important;
  font-weight:500;
  padding: 5px;
  transition: transform 0.25s ease;
}

.link-button img {
  max-width: 1.5rem;
  height: 1.3rem;
  margin: 0.1rem 0.25rem;
}

.link-button:hover {
  transform: translateY(-0.1rem) translateX(-0.2rem) scale(1.015);
  transition: transform 0.25s ease;
  cursor: pointer;
}