body {
  margin: 0;
  font-family: 'Ubuntu Mono', monospace;
  background-color: #ffeedd;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.branding {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: 'Montez', cursive;
  font-size: 36px;
}

.tagline {
  font-size: 18px;
}

.auth-buttons button {
  background-color: #007bff;
  color: white;
  margin-left: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.posts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.post-card {
  background-color: white;
  width: 45%;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  position: relative;
}

.post-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.author {
  font-weight: bold;
  color: #333;
}

.title {
  flex-grow: 1;
  margin-left: 10px;
  font-size: 16px;
  color: #555;
}

.post-body {
  margin-bottom: 10px;
}

.post-body p {
  margin: 0;
  line-height: 1.5;
  color: #666;
}

.post-footer {
  text-align: right;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.delete-icon {
  color: red;
  cursor: pointer;
}

.post-body p {
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.more-icon {
  float: right;
  margin-top: 10px;
  cursor: pointer;
}
.delete-icon {
  color: red;
  cursor: pointer;
  font-size: 18px;
}

.delete-icon:hover {
  opacity: 0.8;
}
.more-icon {
  float: right;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

.more-icon:hover {
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

#confirmDelete {
  background-color: red;
  color: white;
}

#cancelDelete {
  background-color: gray;
  color: white;
}

