.notice-body {
  color: var(--secondary-color);
  text-align: center;
  background-color: var(--secondary-color);
  padding-top: 10vh;
}

.notice-body-container {
  /* overflow: hidden; */
  margin: 2rem;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.notice-container {
  width: 65vw;
  /* background-color: var(--tertiary-color); */
  /* background-color: white; */
  background-color: var(--primary-color);

  padding: 1vw;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.notice-container h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 1rem auto;
}

.notice-desc {
  font-size: 2rem;
  text-align: left;
  /* width: 50ch; */
  letter-spacing: 1.5px;
  padding: 1rem;
}

.notice-container img {
  width: 90%;
  margin: 2rem auto;
  border-radius: 1rem;
}

/* Recent Notice */

.notice-recent {
  background-color: var(--primary-color);
  width: 25vw;
  border-radius: 1rem;
  padding: 1rem;
  text-align: left;
  float: right;
  margin-bottom: 2rem;
}

.notice-recent h2 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}

.recent-notice-item {
  text-align: left;
  margin: 2rem 0;
}

.recent-notice-item h3 {
  font-size: 1.5rem;
}

.recent-notice-item h3 a:hover {
  color: orangered;
}

.recent-notice-item h3 a {
  text-decoration: none;
  color: var(--secondary-color);
}

.recent-notice-item p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Other Screen */
@media (max-width: 950px) {
  .notice-body-container {
    flex-direction: column;
    justify-content: space-evenly;
  }
  .notice-container,
  .notice-recent {
    width: 90vw;
  }
}
