@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

.styled {
  font-family: Merriweather, serif;
  font-size: 24px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 500;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.4;
  margin: 5rem auto;
  background: linear-gradient(to right, #c4feff, #f2d5ff);
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  width: auto;
}

.header .styled {
  font-size: 48px;
}

section {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border: 3px solid transparent;
  border-image: linear-gradient(to left, #57fcff, #db8eff) 1;
  margin-bottom: 2rem;
  width: 100%;
}

section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 32px;
  text-align: center;
}

section h3 {
  margin-top: 0;
  font-size: 24px;
}

p.styled{
  background-color: rgb(224, 255, 223);
  padding: 0.75rem;
  border-radius: 20px;
  margin-left: 3rem;
  width: fit-content;
}

.lighter {
  font-weight: 100;
}

.normal {
  font-weight: 500;
  letter-spacing: 0em;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}

.bold {
  font-weight: 900;
}

.italics {
  font-style: italic;
}

.narrow {
  letter-spacing: -0.1em;
}

.wide {
  letter-spacing: 0.1em;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase   {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.strikethrough {
  text-decoration: line-through;
}

.overline {
  text-decoration: overline;
}