/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
:root {
 --color-bg: #25043d;
 --color-header: hotpink;
 --color-header-link: #0000EE;
 --color-accent: #56d2e2;
}

body {
  /*text*/color: white;
  font-family: Sans-Serif;
  background: #a33ffb;
  background: linear-gradient(160deg,rgba(163, 63, 251, 1) 0%, rgba(163, 63, 251, 1) 40%, rgba(163, 63, 251, 1) 42%, rgba(8, 95, 161, 1) 100%);
  background-attachment: fixed;
}

a {
  color: pink;
  text-decoration: underline dotted;
}

.header {
  display: flex; /* allow text to be next to images */
  align-items: center; /* make text centered vertically */
  background-color: var(--color-header);
}

.header a { /* links in the header */
  color: var(--color-header-link);
}

.letter-item {
  background-color: #1b0033;
  background-size: 100%;
  margin-right: 25%;
  margin-left: 25%;
  margin-bottom: 100px;
  text-align: center;
  border: 5px solid purple;
  border-radius: 10px;
}

.letter-item p {
  /*color: black;*/
  line-height: 1.6;
  font-size: 35px;
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 50px;
}

.letter-item h3 {
 /*color: black;*/
 font-size: 50px;
}
