body {
  background-color: white;
  color: black;
  font-family: 'monogram';
  line-height: 1.6;
  font-size: 32px;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

.padding-0 {
  padding: 0;
}

.main-container {
  max-width: 1050px;
  margin: 0 auto;
}

.small-col-gap {
  column-gap: .5rem
}

.gap-small {
  gap: 10px;
}

.decorate-none {
  text-decoration: none;
  color: black;
}

.text-sm {
  font-size: 1.5rem;
}

.text-md {
  font-size: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.text-xs {
  font-size: 1.25rem;
}

a:hover {
  color: rgb(34, 31, 31);
  transition: 0.3s;
}

.flex {
  display: flex;
}

.row-end-alignment {
  align-items: flex-end;
  text-align: flex-end;
}

.flex-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.h-container {
  justify-content: space-around;
  margin: auto;
  height: fit-content;
}

.center-content {
  align-items: center;
  justify-content: center;
}

.start-content {
  align-items: center;
  justify-content: flex-start;
}

.w-full {
  width: 100%;
}

.left-content {
  align-items: left;
  justify-content: left;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

header #nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 5px;
}

.border-box {
  padding: 5px;
  margin-top: 10px;
  border: 5px dashed #755A6A;
  background: white;
}

.center-text {
  text-align: center;
}

header #nav {
  margin-bottom: 0;
}

#nav ul {
  padding: 0;
  list-style: none;
  gap: 2rem;
}

.main-content {
  display: flex;
  flex-direction: row;
}

.sidebar {
  border: 5px dashed #755A6A;
  padding-left: 10px;
  padding-right: 10px;
  width: 200px;
  margin-top: 15px;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

main {
  border: 5px dashed #755A6A;
  padding: 1rem;
  width: 100%;
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.bg {
  background-image: url('bg/eyeball-1.png');
  background-repeat: repeat;
  background-position: center;
}