*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", Times, serif;
  width: 100%;
  height: fit-content;
}

#template_pages {
  display: grid;
  grid-template-columns: 65px 1fr 1fr 1fr 65px;
  grid-template-rows: auto auto 0.25fr;
  background-color: hsl(0, 0%, 0%);
  justify-content: center;
  overflow-x: hidden;
}
#template_pages__top {
  grid-column: 1/-1;
  grid-row: 1/2;
  background-color: hsl(0, 0%, 90%);
  padding: 1rem 1rem 0 1rem;
  min-width: 100%;
  margin: 0 auto;
}
#template_pages__top__nav {
  grid-row: 1/2;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1.625rem, 0.5fr));
}
#template_pages__top__nav__home {
  background-color: white;
  color: hsl(0, 100%, 90%);
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 0;
  width: min-content;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#template_pages__top__nav__home:hover {
  background-color: lightgray;
}
#template_pages__top__nav__login {
  background-color: white;
  color: hsl(0, 100%, 90%);
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 0;
  width: min-content;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#template_pages__top__nav__login:hover {
  background-color: lightgray;
}
#template_pages__top__nav__signup {
  background-color: white;
  color: hsl(0, 100%, 90%);
  border: transparent;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 0;
  width: min-content;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#template_pages__top__nav__signup:hover {
  background-color: lightgray;
}
#template_pages__top__nav__settings {
  background-image: url("/static/settings_icon");
  background-size: cover;
  width: 2rem;
  height: 2rem;
  border: none;
  cursor: pointer;
  grid-column: 4/5;
  grid-row: 1/2;
  justify-self: end;
}
#template_pages__top__logo {
  grid-row: 2;
  grid-column: 1/2;
  image-orientation: from-font;
  width: min-content;
}
#template_pages__top__logo img {
  padding-top: 1rem;
  padding-right: 1rem;
}
#template_pages__top__subject {
  grid-column: 2/4;
  font-weight: bold;
  text-align: center;
  width: auto;
}
#template_pages__top__subject__first_word {
  font-size: 3.5rem;
  color: white;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
#template_pages__top__subject__first_word h3 {
  text-indent: 7rem;
}
#template_pages #main {
  grid-column: 1/-1;
  grid-row: 2/3;
  background-color: lightgray;
  padding: 20px;
}
#template_pages #main__paths {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
#template_pages #main__paths button {
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px;
  font-size: 2.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#template_pages #main__paths button:hover {
  background-color: darkorange;
}
#template_pages #main__info_cards {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(5rem, 1fr));
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}
#template_pages #main__info_cards .card {
  grid-column: 1/-1;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: max-content;
}
#template_pages #main__info_cards .card__text p {
  padding: 1rem;
  font-size: 1.2rem;
  color: #333;
  flex-grow: 1;
  text-indent: 5%;
}
#template_pages #main__info_cards .card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 1rem;
}
#template_pages #main__info_cards .card__header img {
  width: 12%;
  height: auto;
  display: block;
  object-fit: cover;
}
#template_pages #main__info_cards .card__header h2 {
  margin-left: 4rem;
  font-size: xx-large;
}
#template_pages #main__info_cards .card__header h3 {
  justify-self: end;
  margin-left: 4rem;
  font-size: large;
  padding-right: 1rem;
}
#template_pages #main__info_cards__journaler {
  grid-column: 1/-1;
  margin-top: 2rem;
  outline: 1px solid darkgray;
  display: flex;
  flex-direction: column;
  outline: black 2px dashed;
  border-radius: 2rem;
  padding: 1rem 0;
}
#template_pages #main__info_cards__journaler__title {
  background: transparent;
  font-family: "Georgia", serif;
  /* Serif fonts often feel more "journal-like" */
  font-size: 2.1rem;
  line-height: 2.6;
  padding-top: 0.22rem;
  color: #333;
  border-radius: 0.33rem;
  margin: 1.2rem 0.2rem;
  border-bottom: black 1px solid;
}
#template_pages #main__info_cards__journaler__body {
  background: transparent;
  resize: vertical;
  /* Allows user to expand height */
  font-family: "Georgia", serif;
  /* Serif fonts often feel more "journal-like" */
  font-size: 2.1rem;
  line-height: 2.6;
  padding: 0.22rem 0;
  color: #333;
  border-radius: 0.33rem;
  margin: 1rem 0.2rem;
  border-bottom: 1px solid black;
}
#template_pages #main__info_cards__journaler__body:focus {
  background: rgba(0, 0, 0, 0.06);
}
#template_pages #main__info_cards__journaler__author {
  background: transparent;
  border: none;
  font-family: "Georgia", serif;
  /* Serif fonts often feel more "journal-like" */
  font-size: 2.1rem;
  line-height: 2.6;
  padding: 0.22rem 0;
  color: #333;
  border-radius: 0.33rem;
  margin: 2rem 0.2rem;
}
#template_pages #main__info_cards__journaler button {
  background-color: coral;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 1rem 0;
  font-size: 1rem;
  cursor: pointer;
}
#template_pages #main__info_cards__confirmation {
  grid-row: 4/5;
  grid-column: 1/2;
}
#template_pages #main__info_cards__confirmation button {
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 1rem 0;
  font-size: 1rem;
  cursor: pointer;
}
#template_pages #main__info_cards__confirmation button:hover {
  background-color: darkgreen;
}
#template_pages footer {
  grid-column: 1/-1;
  grid-row: 3/4;
  background-color: coral;
  color: white;
  text-align: center;
  padding: 10px 0;
}
#template_pages footer #footer_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background-color: purple;
  padding: 10px 0;
}
#template_pages footer #footer_container button {
  grid-row: 1/2;
  background-color: white;
  color: coral;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#template_pages footer #footer_container button:hover {
  background-color: lightgray;
}
#template_pages footer #footer_container__version {
  grid-row: 2/3;
  grid-column: 2/3;
  margin-top: 5px;
  font-size: 0.9rem;
  color: lightyellow;
}
#template_pages #login {
  background-color: hsl(0, 100%, 90%);
  grid-row: 3/-1;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-height: fit-content;
  min-width: 100%;
  padding: 1rem;
}
#template_pages #login h1 {
  height: 4rem;
  text-align: center;
}
#template_pages #login__center {
  border: 1rem black solid;
  padding: 1rem;
}
#template_pages #login__center form {
  border: 10px red solid;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem 0;
}
#template_pages #login__center form button {
  padding-top: 1rem;
}
#template_pages #login__response {
  height: fit-content;
  width: 85%;
  padding: 1rem;
  border: blue 1rem solid;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#template_pages #login__response h4 {
  font-size: x-large;
}
#template_pages #register {
  background-color: hsl(0, 100%, 90%);
  grid-row: 3/-1;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-height: fit-content;
  min-width: 100%;
  padding: 1rem;
}
#template_pages #register h1 {
  height: 4rem;
  text-align: center;
}
#template_pages #register__center {
  border: 1rem black solid;
  padding: 1rem;
}
#template_pages #register__center form {
  border: 10px red solid;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem 0;
}
#template_pages #register__center form button {
  padding-top: 1rem;
}
#template_pages #register__response {
  height: fit-content;
  width: 85%;
  padding: 1rem;
  border: blue 1rem solid;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#template_pages #register__response h4 {
  font-size: x-large;
}
#template_pages #error {
  background-color: blue;
}
#template_pages #error__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#template_pages #error__block__header {
  background-color: red;
  color: white;
  text-align: center;
}
#template_pages #error__block__body button {
  background-color: red;
  color: white;
  transform: translateY(-2px);
}
#template_pages #error__block__body button:hover {
  background-color: darkred;
  transform: translateY(-1px);
  transition: all 0.2s ease-in-out;
}
#template_pages #settings {
  background-color: hsl(0, 100%, 90%);
  grid-row: 3/-1;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-height: fit-content;
  min-width: 100%;
  padding: 1rem;
}
#template_pages #settings h1 {
  height: 4rem;
  text-align: center;
}
#template_pages #settings__center {
  border: 1rem black solid;
  padding: 1rem;
}
#template_pages #settings__center form {
  border: 10px red solid;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem 0;
}
#template_pages #settings__center form button {
  padding-top: 1rem;
}
#template_pages #settings__response {
  height: fit-content;
  width: 85%;
  padding: 1rem;
  border: blue 1rem solid;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#template_pages #settings__response h4 {
  font-size: x-large;
}

#info_buttons {
  background-color: white;
}

@media (max-width: 844px) {
  #template_pages #top {
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
