@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
  text-justify: inter-word;
}

.tribute-container {
  /* background-color: rgb(207, 205, 205); */
  width: 80%;
  margin: auto;
  border: 5px solid black;

  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.heading {
  font-size: 1.5rem;
  /* background-color: orange; */
  text-align: center;
  font-family: serif;
}

.heading h1 {
  display: inline-block;
  /* text-decoration: underline; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
  border-radius: 15px;
}

.jim-container {
  /* background-color: olive; */
  padding: 3px;
  display: flex;
  justify-content: space-around;
}

.image-container {
  /* background-color: aqua; */
  padding: 1rem;
  width: 20%;
  font-size: 1rem;
}

.image-container img {
  width: 100%;
  border-radius: 50%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.about-person {
  /* background-color: pink; */
  width: 70%;
  font-size: 19px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-block {
  /* background-color: yellow; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote {
  background-color: rgb(231, 229, 229);
  width: 75%;
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: normal;
  color: grey;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px rgba(93, 64, 55, 0.4), 0 10px rgba(93, 64, 55, 0.3),
    0 15px rgba(93, 64, 55, 0.2), 0 20px rgba(93, 64, 55, 0.1),
    0 25px rgba(93, 64, 55, 0.05), -5px 5px 40px rgba(100, 0, 0, 0.4);
}

.name {
  display: block;
  /* background-color: magenta; */
  width: 99%;
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.movie-list {
  /* background-color: bisque; */
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .tribute-container {
    width: 95%;
  }

  .heading {
    font-size: 1.2rem;
    /* background-color: orange; */
  }

  .jim-container {
    /* background-color: olive; */
    padding: 3px;
    flex-direction: column;
    width: 97%;
    justify-content: center;
  }

  .image-container {
    /* background-color: aqua; */
    padding: 1rem;
    width: 70%;
    margin: auto;
  }

  .quote {
    font-size: 1.5rem;
  }

  .about-person {
    /* background-color: pink; */
    width: 90%;
    margin: auto;
  }
}
