h1 {
  font-size: .85em;
  line-height: 1.1;
  margin: 0;
}

article {
  width: 85%;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 10px;
  color: #000000;
  margin: 5px auto;
  border: 5px outset white;
}

h4 a,
h4 a:visited {
  border: 3px solid #444444;
  background-color: grey;
  border-radius: 5px;
  padding: 2px 4px;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
}

#createEvent {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 99999;
  pointer-events: none;
}

#createEvent:target {
  opacity: 1;
  pointer-events: auto;
}

#createEvent #createButton {
  width: 55%;
}

#createEvent div {
  position: relative;
  height: min-content;
  width: 50vw;
  background: linear-gradient(#ffffff, #aaaaaa);
  margin: calc(100vh/6) auto;
  border-radius: 10px;
}

#createEvent {
  color: black;
  overflow-y: auto;
}

#createEvent form {
  padding: 20px 30px;
}

#createEvent input {
  display: block;
  width: 70%;
  margin: 5px auto;
}

#createEvent select {
  display: block;
  width: 72%;
  margin: 5px auto;
}

#createEvent label {
  display: block;
  margin: 5px auto;
}
#createEvent textarea {
  display: block;
  height: 20vh;
  width: 71.5%;
  margin: 5px auto;
  resize: none;
}

#createEvent holder {
  height: auto;
  display: block;
  width: 72%;
  margin: 5px auto;
}

#createEvent .number {
  display: inline-block;
  margin: 5px;
  width: 15%;
  height: 1.2em;
}

.close {
  border: 4px groove red;
  line-height: 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  color: black;
  background-color: red;
  border-radius: 50%;
}
