/* 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 {
  font-family: "Courier Prime", monospace;
  font-size: 14px;
  background-image: url("https://sha-likes-to-ramble.neocities.org/Untitled_Artwork.jpg");
  background-repeat: repeat;
    cursor: url("https://kiunlo.neocities.org/cursors/misc/lantern_cursor.png"), auto


}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.container {
  padding: 4px;
  background-color: #c284be;
  border-radius: 20px;
  width: 80%;
}
nav {
  background: #f5d1f0;
  text-align: center;
  padding: 0.5em;
  border-radius: 20px;
}
.layout {
  display: grid;
  grid-template-areas:
    "left content right"
    "footer footer footer";
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0.2em;
  justify-content: center;
}
.left {
  background-color: #faddfd;
  padding: 8px;
  margin: 6px;
  grid-area: left;
  border-radius: 8px;
  text-align: center;
}
.content {
  background-color: white;
  padding: 8px;
  margin: 6px;
  grid-area: content;
  border-color: #faddfd;
  text-align: center;
  border-radius: 8px;
}
.right {
  background-color: #faddfd;
  padding: 8px;
  margin: 6px;
  grid-area: right;
  border-radius: 8px;
  text-align: center;
}
img {
  display: block;
  margin: auto;
}

h3 {
  color: #c583b6;
  text-align: center;
}

.blinki {
  display:flex;
  flex-flow: row wrap;
  gap: 10px;
  justify-content: center;
}

.footer {
  text-align: center;
  grid-area: footer;
}

.custom-list {
  list-style: none;
  padding: 4px;
  margin: 0;
  width: 100%;
}


