/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*, *::before, *::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/*-------code starts here-----*/

html {
	background-color: #FEF5E6;
}

main {
margin: auto;
}

 /* source https://www.w3schools.com/howto/howto_css_image_text.asp*/
/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  width: 100vw;

}

.container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
	font-family: "Ballet", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.5vw;
	text-align: center;
	position: absolute;
  padding-right: 2.5vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dropcap {
	float: left;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}

.first{
  margin-top: 5rem;
}

p {
  font-size: 20px;
  max-width: 30rem;
  font-family: "MedievalSharp";
  margin: auto;
  margin-bottom: 1.5rem;
}

.cried {
  text-align: center;
  margin-top: 10rem;
  margin-bottom: 0rem;
  font-size: 20px;

}

.braid { /*CHATGPT*/
  max-width: 260px;
  height: 550px;
  margin: auto;
  margin-bottom: 14.5rem;
  position: relative;
  text-align: center;
}


.story-section {
  position: relative;
  width: 100%;
}

.left-image  /*CHAT GPT*/{
  position: absolute;
  width: 20vw;
  left: 0;
  margin-left: 40px;
  margin-right: 20px;
}


.right-image  /*CHAT GPT*/{
  position: absolute;
  transform: scaleX(-1);
  width: 20vw;
  right: 0;
  margin-right: 40px;
}

.left-music /*CHAT GPT*/{
  position: absolute;
  width: 20vw;
  left: 0;
  margin-left: 40px;

}

.right-music /*CHAT GPT*/{
  position: absolute;
  width: 20vw;
  right: 0;
  margin-right: 40px;

}

.heart /*CHAT GPT*/{
  position: absolute;
  width: 20vw;
  left: 0;
  margin-left: 40px;
}

.broken /*CHAT GPT*/{
   position: absolute;
  width: 20vw;
  right: 0;
  margin-right: 40px;
}


blockquote {
	font-family: "Libre Caslon Text";
	font-style: italic;
	text-align: center; 
  font-size: 30px;
  background-color: #FEF5E6;
  position: absolute;
  padding-top: 10px;
  padding-bottom: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 43rem;
  max-width: 80vw;
  overflow: hidden;

}


.evil{ 
  width: 260px;
  height: 550px;
  margin: auto;
  position: relative;
  text-align: center;
}

.evil img /*ChatGPT*/{
width: 100%;
height: 40%;
object-fit: cover;
}

.eyes {
  width: 550px;
  height: 400px;
  max-width: 90vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.eyes img  /*ChatGPT*/ {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.narrative {
  font-family: "MedievalSharp";
  line-height: 25px;
  text-align: center;
  font-size: 25px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.footer-banner /*ChatGPT*/ {
  display: block;
  width: 50vw;       
  height: auto;       
  object-fit: cover;  
  margin: auto;
}

footer {
  font-size: 18px;
  margin: auto;
  margin-bottom: 5px;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 50px;
}

a {
font-family: "MedievalSharp";
color: black;
font-size: 15px;

}

@media screen and (max-width: 913px) {

  .left-image,
  .right-image,
  .left-music,
  .right-music,
  .heart,
  .broken {

  display: none;
  }
}




@media screen and (max-width: 43rem){
blockquote {
  width: 100%;
}
}






