:root {
  --pink: #edafb8ff;
  --light-pink: #f7e1d7ff;
  --ash-green: #dedbd2ff;
  --sage: #b0c4b1ff;
  --dark: #4a5759ff;
}


body {
  background-color: #cfe7d3;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='1' viewBox='0 0 40 1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v1H0z' fill='%23dfffe0' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' stroke='%23000000' stroke-width='1' stroke-linejoin='round' d='M12 3l2.23 6.88h7.23l-5.85 4.24L17.85 21 12 16.75 6.15 21l2.24-6.88L2.54 9.88h7.23L12 3z'/%3E%3C/svg%3E"), auto;
}

header {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--pink);
  background-color: var(--light-pink);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 60vw;
  margin: 20px auto;
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 2px var(--sage);
  align-content: space-between;
}

header a {
  align-self: flex-end;
  color: var(--dark);
  font-size: large;
  text-decoration: none;
}

header a:hover {
  color: black;
  border-bottom: 2px black dotted;
  transition: color 200ms, border-bottom 200ms;
}

header h1 {
  align-self: flex-start;
  text-align: center;
  margin: auto;
}

.shadow {
  box-shadow: var(--sage) 5px 5px 20px 5px;
}

.main-container {
  background-color: #dedbd2aa;
  display: flex;
  flex-direction: column;
  width: 60vw;
  height: 100vh;
  height: fit-content;
  padding: 36px;
  margin: auto;
  border-radius: 8px;
  border: 2px solid var(--dark);
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

.main-content {
  display: flex;
  flex-direction: row;
  margin: 10px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: fit-content;
  min-width: 25vw;
}

.sidebar a {
  padding: 4px;
  margin: 8px;
}

.sidebar a {
  display: block;
  color: white;
  background-color: var(--pink);
  margin: 10px 0%;
  padding: 12px;
  width: 125px;
  min-width: 100px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--dark);
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
}

.sidebar a:hover {
  background-color: #3d5d76;
  transform: scale(1.03);
}

.feed {
  background: var(--light-pink);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid var(--pink);
}

.delius-swash-caps-regular {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}


