@font-face {
  font-family: 'Cuomotype';
  src: url('https://micryptid.neocities.org/DEADMEATWEB/fonts/Cuomotype.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* 90s Aesthetic + Black & Purple Theme */

body {
  margin: 0;
  background-color: black;
  color: purple;
  font-family: 'Cuomotype', "Comic Sans MS", cursive, sans-serif;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

a {
  color: #ff66ff;
  text-decoration: underline;
  font-weight: bold;
}

a:hover {
  color: yellow;
  background-color: purple;
  text-decoration: none;
  border: 1px dashed yellow;
}

h1, h2, h3 {
  font-family: 'Cuomotype', Impact, "Arial Black", sans-serif;
  color: #ff00ff;
  text-shadow: 2px 2px #000000;
  background-color: #222;
  padding: 10px;
  border: 3px groove #800080;
  margin: 20px 0;
}

/* Layout for entire page */
.main-container {
  display: flex;
  min-height: 100vh;
}

/* Left section */
.left-section {
  width: 250px;
  background-color: #1a1a1a;
  padding: 20px;
  color: #ffccff;
  border: 3px ridge #9932cc;
}

ul {
  list-style-type: square;
  background-color: #2a2a2a;
  padding: 15px;
  border: 2px dotted #ff00ff;
}

li {
  margin-bottom: 12px;
  font-weight: bold;
}

/* Right/main content area */
.container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #111;
  border: 5px double purple;
  box-shadow: 0 0 15px #ff00ff;
}

.caption {
  font-style: italic;
  font-size: 1.2em;
  color: #ffccff;
  background-color: #222;
  padding: 8px;
  border: 2px inset #800080;
  margin-top: 10px;
}

.container img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 10px;
  border: 5px outset #ff00ff;
  background-color: #000;
  padding: 5px;
  box-shadow: 4px 4px 0 #660066;
}



