@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 & Red Theme */

body {
  margin: 0;
  background-color: black;
  color: Red;
  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: Purple;
  background-color: Red;
  text-decoration: none;
  border: 1px dashed Purple;
}

h1, h2, h3 {
  font-family: 'Cuomotype', Impact, "Arial Black", sans-serif;
  color: #ff00ff;
  text-shadow: 2px 2px #D2042D;;
  background-color: #222;
  padding: 10px;
  border: 3px groove #D2042D;;
  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: #D2042D;;
  border: 3px ridge #D2042D;;
}

ul {
  list-style-type: square;
  background-color: #2a2a2a;
  padding: 15px;
  border: 2px dotted #D2042D;;
}

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 red;
  box-shadow: 0 0 15px #D2042D;
}

.caption {
  font-style: italic;
  font-size: 1.2em;
  color: #ffccff;
  background-color: #222;
  padding: 8px;
  border: 2px inset #D2042D;
  margin-top: 10px;
}

.container img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 10px;
  border: 5px outset #D2042D;
  background-color: #000;
  padding: 5px;
  box-shadow: 4px 4px 0 #D2042D;
}

.blog-box {
  border: 2px solid #ccc;
  padding: 15px;
  margin-top: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  width: fit-content;
  max-width: 550px;
}

