@font-face {
  font-family: 'ShareTech';
  src: url('./sharetech.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  color: silver;
  font-family: 'ShareTech', monospace;
  cursor: url('./auto_cursor.png'), auto;
}

a:link, a:visited {
  color: violet;
  text-decoration: none;
  text-shadow: 2px 2px 4px purple;
  cursor: url('./link_cursor.png'), auto;
}

a:hover {
  color: violet;
  text-decoration: underline;
  text-shadow: 2px 2px 4px purple;
  cursor: url('./link_cursor.png'), auto;
}

a:active {
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 4px gray;
  cursor: url('./link_cursor.png'), auto;
}

a img, button {
  cursor: url('./link_cursor.png'), auto;
}

input, textarea {
  cursor: url('./text_cursor.png'), auto;
}

body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 18rem;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

body::before {
  left: 0;
  background-image: url('./background.jpg');
  background-position: left;
}

body::after {
  right: 0;
  background-image: url('./background.jpg');
  background-position: right;
}

body {
  margin-left: 20rem;
  margin-right: 20rem;
  background-color: black;
  font-size: 1.1rem;
}

.main, nav {
  display: block;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  border-radius: 20px;
  border: 2px solid white;
  text-align: left;
}

#navigation, #entry, #privateservers, #aboutme, #links,
#five, #six, #nine, #twelve, #thirteen, #twenty, #twentyfive, #twentysix {
  margin: -1rem auto 1rem auto;
  padding: 0 1rem;
  background-color: black;
  font-size: 1.75rem;
  font-weight: bold;
  width: fit-content;
}

ul, ol {
  line-height: 1.5rem;
}

.calendar-container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.pfp {
  float: left;
  margin-right: 8px;
  height: 132px;
  width: auto;
}

.button {
  height: 31px;
  width: 88px;
}

footer {
  margin-top: -0.5rem;
  text-align: center;
  font-size: 0.75rem;
}

.button:hover {
  transform: scale(1.20);
  transition: transform 0.2s ease-in-out;
}