* {
  font-family: sans-serif;
}

header {
  background-color: #212121;
  color: rgb(0, 0, 0);
  padding: 0.01rem 0;
}

body {
  background-color: #212121;
}

.journal-header {
  font-weight: normal;
  font-size: 0.8em;
  color: #ffffff;
}

.nav {
  font-weight: normal;
  font-size: 0.7em;
  padding: 0.08rem 2rem 0;
}

.page-title {
  color: #ffffff;
  font-size: 1.2em;
}

.entry-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.label-input-div {
  padding: 0.2rem 0;
  width: 100%;
  color: #000000;
}

.label-div {
  color: #ffffff;
  padding: 0.2rem 0;
}

.label-div > label {
  font-weight: bold;
  font-size: 0.7em;
}

.input-div > input {
  height: 2em;
}

.input-div > input,
textarea {
  width: 100%;
  border: 1px solid rgb(211, 206, 206);
  border-radius: 4px;
}

.button-div {
  display: flex;
  align-items: center;
}

.left {
  justify-content: flex-start;
}

.right {
  justify-content: flex-end;
}

.center {
  text-align: center;
}

.button {
  text-transform: uppercase;
  font-size: 0.7em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: none;
}

.purple.button {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.edit-icon {
  color: #ffffff;
}

.button:hover,
.edit-icon:hover {
  cursor: pointer;
}

.entry-list {
  padding: 0;
  margin: 0;
}

.entry {
  list-style: none;
  margin-bottom: 1rem;
}

.entry-title {
  color: #ffffff;
  font-size: 0.9em;
  line-height: 0.2em;
}

.entry-notes {

  font-size: 0.8em;
  line-height: 0.2em;
  color: #ffffff;
}

nav > a,
.button-div > a {
  color: white;
  text-decoration: none;
}

.delete-button-div {
  display: flex;
}

.delete-button {
  font-size: 0.8em;
  font-weight: normal;
  margin-top: 0.3rem;
  color: rgb(238, 71, 11);
}

.delete-button-div > a {
  color: rgb(238, 71, 11);
}

.delete-confirmation-div {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
}

.delete-confirmation {
  width: 18rem;
  border-radius: 4px;
  background-color: #f4f1f5;
  padding: 1rem 0.8rem;
}

.delete-confirmation-text {
  font-size: 0.8em;
  padding-bottom: 0.5rem;
  width: 100%;
}

.cancel {
  background-color: #cecece;
  color: black;
}

.confirm {
  background-color: #f93d3b;
  color: white;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
}
