@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 4rem;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.branding > a > img {
  height: 2rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  display: inline-block;
}

.branding > a > h2 {
  display: inline-block;
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
  color: black;
  padding: 0.5rem 0;
}

.navarea {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(102, 72, 102, 1) 35%,
    rgba(51, 0, 51, 1) 100%
  );
  padding: 0.5rem 1rem;
  gap: 2rem;
  box-shadow: 5px 1px 5px 0px rgba(0, 0, 0, 0.25);
  width: 75%;
}

.navarea > a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.content {
  text-align: justify;
}

.wall-form {
  margin: 2rem 0;
}

.wall-form > input[type="text"],
.wall-form > textarea {
  width: calc(100% - 1rem);
  padding: 0.5rem;
  margin: 0.5rem 0;
  font-family: "Roboto Condensed", sans-serif;
}

.wall-form > button[type="submit"] {
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  background: #663366;
  color: #ffffff;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
}

.thought {
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background: #f9f9f9;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
}

.thought-author {
  font-weight: bold;
}

.thought-header > small {
  font-size: 0.8rem;
  color: #999999;
}

.sf-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.sf-root {
  width: 125px;
}

.sf-center {
  text-align: center;
}
