/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-image: url('cloud_tile.png');
  background-repeat: repeat;
  background-size: 128px 128px;
  image-rendering: pixelated;
}

.main {
  background-color: rgba(255, 255, 255, 0.75); /* white with 70% opacity */
  color: #CF1259;
}

.header {
 text-align: center; 
 padding: 10px;
 width: 100%;
}

.index-grid {
 text-align: left; 
}

.nav-bar {
  background-color: #f8f8f8;
  padding: 10px 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-bar ul {
  list-style: none;           /* Remove bullet points */
  margin: 0;
  padding: 0;
  display: flex;              /* Arrange items horizontally */
  gap: 5px;                  /* Space between items */
}


.nav-bar a {
  display: flex;
  padding: 8px 12px;
  background-color: #DD7596;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s;
}

.nav-bar a:hover {
  background-color: #e0e0e0;
}

.index-grid a:visited {
 color: #CF1259; 
}
