@import url("https://fonts.googleapis.com/css2?family=Fleur+De+Leah&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background: black;
  color: white;
}

::selection {
  background: black;
  color: white;
}

body {
  position: relative;
  margin: 2rem;
  padding: 2.5rem;
  font-family: "Spectral", serif;
  font-size: 1rem;
  border: 0.25rem solid black;
}
body::-webkit-scrollbar {
  width: 0.5rem;
}
body::-webkit-scrollbar-thumb {
  border: 0.25rem solid #000;
}

.flower {
  float: right;
  margin-right: -11rem;
  height: 33rem;
  shape-outside: url("https://raw.githubusercontent.com/melipi/img-repo/main/flower-silhouette.png");
  shape-margin: 2rem;
}

.excerpt {
  margin: 10px auto;
  columns: 20rem auto;
  column-gap: 1.5rem;
  background: white;
}

h1,
h2,
h3 {
  font-weight: 400;
  text-align: center;
}

.title__first {
  margin: 3rem 0 -2.5rem 0;
  padding-left: 2rem;
  font-weight: 500;
  font-size: 2.5rem;
  font-style: italic;
  text-align: left;
}

.title__second {
  font-size: 7rem;
  text-align: left;
  line-height: 6rem;
}

h2 {
  margin-top: 3rem;
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-style: italic;
}

h3 {
  width: 15rem;
  margin: 2.5rem 0 6rem 0;
  padding: 0.7rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  font-style: italic;
  border-top: solid 0.15rem black;
  border-bottom: solid 0.15rem black;
}

p {
  text-align: justify;
  margin: 1rem 0;
  line-height: 1.5rem;
}
p:first-of-type:first-letter {
  padding: 0.25rem;
  margin: -1rem 0.25rem -0.25rem 0;
  font-family: "Fleur De Leah", cursive;
  font-size: 5rem;
}
p:first-of-type {
  font-size: 1.4rem;
  line-height: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

/* unvisited link */
a:link {
  color: crimson;
}

/* visited link */
a:visited {
  color: purple;
}

/* mouse over link */
a:hover {
  color: yellow;
}

/* selected link */
a:active {
  color: black;
}