body,
html {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.slide-section .desktop-slide {
  display: block;
}
.slide-section .mobile-slide {
  display: none;
}

.notice {
  position: relative;
  margin-bottom: 3rem;
}

.notice-image {
  width: 150px;
  z-index: 1;
  position: absolute;
  margin-top: -3rem;
  filter: drop-shadow(10px 5px 10px grey);
}

#student-form input{
  color: black;
}

@media only screen and (max-width: 600px) {
  .slide-section .desktop-slide {
    display: none;
  }
  .slide-section .mobile-slide {
    display: block;
  }
}

