/* 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 {
  background-image: url("fromtexturesneocitiesST177.JPG");
    height: 100%;
    background-position: center;
    background-size: cover;
  color: white;
  font-family: "Courier New", monospace;
  margin: 0 auto;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  background: black;
  overflow: auto;
  padding: 10px 10px;
  border: solid black;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: sticky;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.item {
  margin: 0 15px;
}

.item a {
  text-decoration: none;
  color: white;
  background-color: black;
  font-weight: bold;
}

.item a:hover {
  color: black;
  background-color: white;
}

.active {
  background-color: hotpink;
}

main {
 border: 2px dashed black;
 padding: 10px;
 margin: auto;
 background-color: hotpink;
 color: white;
 max-width: 800px;
}

h1 {
	text-align: center;
}

ul {
  list-style: none;
  text-decoration: none;
}

.list {
        background-color: white;
        color: black;
        border: 2px dashed black;
        border-radius: 12px;
        padding: 15px;
        margin: 40px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      }
      
#statuscafe {
    padding: .5em;
    background-color: white;
    color: black;
    border: 1px dashed hotpink;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}