/* Basic Adjustments for this document */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 5rem;
  width: 100%;
  height: 100dvh;
  font-family: "Arial", Helvetica, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.25rem;
  background-color: #f5f5f5;
  background-image: url("../images/orange_window.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: 25%;
  color: #000000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

.main-container {
  position: relative;
  width: 100%;
  height: auto;
  padding: 2rem;
  background-color: #f5f5f5ee;
  border-radius: 1rem;
  border: 1px solid #000000;
}

.message {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.03px;
}

.main-container > hr {
  border: 1px solid #000000;
}

.directory-list-container > ul {
  list-style-type: none;
  padding-left: 0;
  line-height: 2rem;
}

.directory-list-container > ul > li {
  padding: 0.25rem 0;
}

.directory-list-container > ul > li > a {
  color: aqua;
  background-color: blue;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid blue;
  text-decoration: none;
}

.directory-list-container > ul > li > a:hover {
  color: black;
  background-color: whitesmoke;
}
