* {
  font-family: 'SF Mono', sans-serif;
  color: white;
  box-sizing: border-box;
}

h1 {
  text-align: center;
}

body {
  background-image: url(https://www.cameronsworld.net/img/content/32/bg.png);
  background-size: 5%;
  color: white; 
  zoom: 90%;
  padding: 5ch;
}

.nav-item {
  text-decoration: underline;
  color:white;
  font-size: 2ch;
}
.nav-item:hover {
  color: hotpink;
  font-weight: bolder;
  font-style: italic;
}

.link {
  text-decoration: underline;
  color: hotpink;
}
.link:hover {
  font-style: italic;
}

.titlelink {
  text-decoration: none;
  margin-top: 0.5ch;
  font-size: 2ch;
  font-weight: bold;
  font-style: italic;
  color: hotpink;
}

.titlelink:hover {
  text-decoration: underline;
}

.body-text {
  font-size: 2ch;
  text-align: left;
  margin-left: 10ch;
  margin-right: 10ch;
  text-decoration: none;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Ensure columns are spaced out */
  margin: 0 auto; /* Center the container */
  width: 100%; /* Adjust width as needed */
}

.row {
  display: flex; /* Ensure the parent container uses flexbox */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  width: 100%;
}

.leftcolumn {
  flex: 25%; /* Adjust width for the left column */
  padding: 2ch;
}

.rightcolumn {
  flex: 25%; /* Adjust width for the right column */
  padding: 2ch;
}

.centercolumn {
  flex: 50%; /* Adjust width for the center column */
  padding: 2ch;
}

.leftcolumn-home {
  flex: 70%; /* Adjust width for the left column */
  padding: 2ch;
}

.rightcolumn-home {
  flex: 30%; /* Adjust width for the right column */
  padding: 2ch;
}

.container .row .card {
  background-color: black !important; 
  color: white !important; 
  margin-bottom: 20px;
  border-radius: 5px;
  border: 0.1ch solid white; 
  padding: 20px; /* Margins inside card */
}

.card-content {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  gap: 10px; 
  margin: 2ch;
}

iframe {
  border: none; 
}

.text-white {
  color: white;
}

.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.showcaseimg {
  width: 100%; 
  height: auto;
  display: block;
  margin: 0 auto;
}

.showcaseimg img {
  width: 100%; /* Ensure the image fits within its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Prevent inline spacing issues */
  margin: 10px 0; /* Add spacing above and below the image */
}

.leftcolumn .showcaseimg {
  margin: 0; /* Ensure the container does not add extra margins */
}

.heading {
  margin-bottom: 1ch;
  font-weight: bold;
}

.caption {
  margin-bottom: 2ch;
}

.recent-posts {
  text-decoration: none;
  margin-top: 0.5ch;
  font-size: 2ch;
  font-weight: bold;
  font-style: italic;
  color: hotpink;
}

.recent-posts:hover {
  text-decoration: underline;
}

.recent-post-item {
  margin-bottom: 1ch; /* Add spacing between recent post items */
}

.recent-post-item .titlelink {
  text-decoration: none;
  font-size: 2ch;
  font-weight: bold;
  font-style: italic;
  color: hotpink;
}

.recent-post-item .titlelink:hover {
  text-decoration: underline;
}

.post-tag {
  display: inline-block;
  background-color: hotpink;
  color: white;
  padding: 0.2ch 0.5ch;
  margin: 0.2ch;
  border-radius: 3px;
  font-size: 1.5ch;
}

.tags {
  margin-top: 1ch;
}