@import url("https://fonts.googleapis.com/css2?family=Nabla&family=IBM+Plex+Sans&display=swap");

/* Reset */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding-left: 1.5em;
}

img {
  max-width: 100%;
  height: auto;
}

/* My stuff */
body {
  background: linear-gradient(
    45deg,
    hsl(289deg 94% 48%) 0%,
    hsl(314deg 100% 50%) 14%,
    hsl(324deg 100% 50%) 29%,
    hsl(334deg 100% 51%) 43%,
    hsl(4deg 100% 65%) 57%,
    hsl(27deg 100% 59%) 71%,
    hsl(41deg 100% 52%) 86%,
    hsl(49deg 100% 55%) 100%
  );
}

.content {
  max-width: 800px;
  margin: 0 auto;
  color: rgb(60, 0, 0);
  /* background-color: rgba(255, 255, 255, 0.2);*/
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  font-family: "IBM Plex Sans", sans-serif;
  padding: 16px;
  line-height: 1.6;
}

.content h1,
.content h2 {
  font-family: "Nabla";
  margin-top: 20px;
  margin-bottom: 8px;
  text-shadow: 0px 0px 10px black;
  animation: 5s ease-in-out infinite rainbow;
}

#header h1,
#header h2 {
  text-align: center;
  margin: 0;
}

#header h1 {
  font-size: 4em;
}

#header h2 {
  font-size: 3em;
}

#header #year {
  letter-spacing: 60px;
  direction: rtl;
  text-indent: -60px;
}

.content p {
  margin-bottom: 8px;
}

a {
  color: #276fbf;
  text-decoration: none;
  border-bottom: 2px dotted;
  transition: border 2s;
}

a:hover {
  border-bottom: 2px solid;
}

th,
td {
  padding: 8px 16px;
  border-bottom: 1px solid black;
}

th:first-child,
td:first-child {
  padding-left: 0;
  padding-right: 0;
}

th {
  border-bottom: 2px solid black;
  text-align: left;
}

.content table {
  max-width: 1000px;
  border-collapse: collapse;
}

footer {
  margin-top: 16px;
}

@keyframes rainbow {
  0% {
    text-shadow: 0px 0px 5px #c307ed;
  }
  50% {
    text-shadow: 0px 0px 20px #ffd318;
  }
  100% {
    text-shadow: 0px 0px 5px #c307ed;
  }
}
