body {
  background-color: black;
  color: red;
  font-family: "Times New Roman", Times, serif;
}

a {
  text-align: center;
}
.title {
  display: flex;
  justify-content: space-evenly;
  padding: 4pt;
}
h1 {
  font-style: oblique;
  color: white;
  padding: 0;
  margin: 0;
  font-kerning: auto;
}

h2 {
  padding: 5pt;
  margin: 0;
}
.animated-gradient {
  background: linear-gradient(-45deg, #000000, #880000, #ff0000);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#main {
  width: 100%;
  display: flex;
  flex-direction: column;
  place-items: center;
}

.content_box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  border-width: 3pt;
  border-color: red;
  border-style: outset;
  width: 95%;
  margin-bottom: 10pt
}

.art_box {
  display: flex;
  flex: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.art {
  max-width: 30%;
  border: outset red 3pt;
  margin: 1%;
}


.link_box {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

.link {
  width: auto;
  background-color: white;
  border: outset white 3pt;
  height: fit-content;
  margin: 5pt;
  text-decoration: none;
  color: black;
  font-size: 15pt
}

.link:hover {
  border: inset white 3pt;
  color: red;
}

.UIbutton {
  border: outset white 3pt;
  background-color: white;
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  font-size: large;
}

.UIbutton:hover {
  border: inset white 3pt;
  color: red;
}