
:root {
  --text: rgb(44, 44, 44);
  --back-bg: rgb(255, 255, 255);
  --front-bg: rgb(250, 235, 215);
  --border: rgb(148, 129, 104);
  --link: rgb(70, 0, 156);
  --link-shadow: rgb(199, 163, 243);
  --title: rgb(70, 0, 156);
  --button-border: rgb(168, 134, 217)
}

body {
  /*font-family: "DM Sans", sans-serif;*/
  font-family: "Atkinson Hyperlegible", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: "Bree Serif", sans-serif;
  color: var(--title);
  font-weight: 500;
}

p {
  font-size: 1.2rem;
  margin: 0.8rem 0;
}

a,
a:visited {
  color: var(--link);
  text-decoration: none;
  transition: text-decoration-line 1s;
  font-weight: 500;
}

a:hover {
  text-shadow: 0px 0px 5px var(--link-shadow);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  max-width: 1000px;
  background-color: var(--back-bg);
}

header {
  margin: 0 20px;
}

main {
  margin: 20px 20px;
  padding: 20px 20px;
  border: 1px solid var(--border);
  background-color: var(--front-bg);
}

ul.links {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

hr {
  border: none;
  margin: 5px 0;
}

ul {
  margin-left: 25px;
  font-size: 1.2rem;
}

h1.brand {
  margin-bottom: 20px;
}

.post-item {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.posts-list {
  list-style: none;
  font-size: 1.2rem;
}

.picture-post {
  padding: 10px;

  img {
    margin: 0 auto;
    display: block;
    border-radius: 8px;
  }
}

.post-cover img {
  display: block;
  margin: 20px auto;
}

