.main {
  padding: 20px;
  text-align: center;
}
.story, .status, .credit ,.link {
  margin: 20px 0;
  padding: 20px;
  background-color: #181a1b;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
h1 {
  color: #ff9600;
  margin-bottom: 10px;
}
.link-list{
  display: flex;
  flex-direction: column;
}
.link-list a{
  padding-top: 5px;
  padding-bottom: 5px;
}
.main a {
  color: #000000;
  text-decoration: none;
}
.main a:hover {
  text-decoration: underline;
}
span{
  display: block;
  position: absolute;
  visibility: hidden;
  margin-top: -100px;
  padding-top: 100px;
}
.status a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  width: 260px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #ff9500;
  border-radius: 40px;
}
.status a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #683d00;
  border-right: 2px solid #683d00;
  transform: rotate(45deg);
}
.status{
  display: flex;
  flex-direction: column;
  align-items: center;
}
a {
  color: #000000;
  text-decoration: none;
}
.main a:hover {
  text-decoration: underline;
}
.fileupload{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#category-select {
  padding: 8px 16px;
  border: 2px solid #ff9600;
  border-radius: 6px;
  background: #222;
  color: #ff9600;
  font-size: 1em;
  margin: 10px 0 20px 0;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#category-select:focus {
  border-color: #ffa733;
  box-shadow: 0 0 0 2px #ffa73344;
}