/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: "fira-code", monospace;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding: 2rem;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.075);
}

h1,
h2,
h3 {
  color: #111;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

ul {
  list-style-type: square;
  padding: 0 0 0 2ch;
  margin: 0 0 1.5rem 0;
}

a {
  position: relative;
  text-decoration: none;
  color: #000;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:hover::after {
  transform: scaleX(1);
}

footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}